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

FieldDescriptionFormatMandatory
client_idUUIODYes
customer_idThe GUID associated to the Customer.UUIDYes
account_nameStringNo
account_profile_idThe GUID.UUIDYes
product_idThe GUID associated to the product configured.UUIDYes
limit_profile_idAllows you to specify the limit profile to be associated to the account. If not populated, the product limit settings will be applied.UUIDNo

Example

{
  "client_id": "string",
  "customer_id": "string",
  "account_name": "string",
  "account_profile_id": "string",
  "product_id": "string",
  "limit_profile_id": "string"
}

Response

FieldDescriptionFormat
account_idGUID generated by CLOWD9 associated to the account created.UUID

Example

{
  "account_id": "string"
}