Single Currency Account Creation
Single Currency Account
Following a succesful Create Account request, CLOWD9 will generate the account_id (UUID format) and provide this in the response.
Request
| Field | Description | Format | Mandatory |
|---|---|---|---|
| client_id | UUIOD | Yes | |
| customer_id | The GUID associated to the Customer | UUID | Yes |
| account_name | String | No | |
| account_profile_id | The GUID | UUID | Yes |
| product_id | The GUID associated to the product configured | UUID | Yes |
| limit_profile_id | Allows you to specify the limit profile to be associated to the account. If not populated, the product limit settings will be applied | UUID | No |
Example
{
"client_id": "string",
"customer_id": "string",
"account_name": "string",
"account_profile_id": "string",
"product_id": "string",
"limit_profile_id": "string"
}
Response
| Field | Description | Format |
|---|---|---|
| account_id | GUID generated by CLOWD9 associated to the account created | UUID |
Example
{
"account_id": "string"
}Updated 2 months ago
What’s Next