Skip to content

Suggested

API Dashboard

RecipesCreate Accounts

Create Accounts

Create accounts with types CHECKING, ASSET, or SAVINGS for identities on the platform.

Note

The account types you can create are CHECKING, ASSET, and SAVINGS. ESCROW and FEE accounts are managed by the platform and cannot be created directly.

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

Request
POST /sandbox/accounts HTTP/1.1
Host: api.conomyhq.com
x-api-key: {YOUR_API_KEY}
Authorization: Bearer {ACCESS_TOKEN}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Content-Type: application/json
Accept: application/json

{
  "identityId": "<ORGANIZATION_ID>",
  "externalId": "lybkpay-2",
  "type": "CHECKING",
  "currency": "CLP",
  "name": "CLP account",
  "custody": "BANK_ACCOUNT"
}
Response
{
  "id": "679d2e934bc4149871723cef",
  "identityId": "679d26c44a21df7584b38e11",
  "type": "CHECKING",
  "custody": "BANK_ACCOUNT",
  "balance": "0",
  "availableFunds": "0",
  "currency": "CLP",
  "accountNumber": "173835432305679d26c44a21df7584b38e11",
  "status": "ACTIVE"
}

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

Request
POST /sandbox/accounts HTTP/1.1
Host: api.conomyhq.com
x-api-key: {YOUR_API_KEY}
Authorization: Bearer {ACCESS_TOKEN}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0
Content-Type: application/json
Accept: application/json

{
  "identityId": "<USER_1_ID>",
  "externalId": "lybkpay-3",
  "type": "CHECKING",
  "currency": "CLP",
  "name": "CLP account",
  "custody": "BANK_ACCOUNT",
  "parentId": "<PARENT_ACCOUNT_ID>"
}
Response
{
  "id": "679d2e934bc43678898aap",
  "identityId": "681b9512a490a37d1d795409",
  "type": "CHECKING",
  "custody": "BANK_ACCOUNT",
  "balance": "0",
  "availableFunds": "0",
  "currency": "CLP",
  "accountNumber": "173835432305681b9512a490a37d1d795409",
  "parentId": "679d2e934bc4149871723cef",
  "status": "ACTIVE"
}