Create Accounts

circle-exclamation

Create the Organization's Account

To create an account for the organization, make the following POST request:

Request

curl --location --request POST 'https://api.conomyhq.com/sandbox/accounts' \
--header 'x-api-key: <YOUR_API_KEY>' \
--header 'User-Agent: <YOUR_APPLICATION_NAME>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <ACCESS_TOKEN>' \
--header 'Accept: */*' \
--header 'Host: api.conomyhq.com' \
--header 'Connection: keep-alive' \
--data-raw '{
    "identityId": "<ORGANIZATION_ID>",
    "externalId": "lybkpay-2",
    "type": "CHECKING",
    "currency": "CLP",
    "name": "CLP account",
    "custody": "BANK_ACCOUNT"
}'

Response

Create Users's Account

To create an account for the first user, make the following POST request:

Request

Response

Last updated