v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Account

๐Ÿ”’ Create account

This endpoint is currently in Beta and available for testing. It may contain bugs, and breaking changes can occur at any time without prior notice. We do not recommend using Beta endpoints in production environments. Should you choose to use it in production, you assume full responsibility for any resulting issues.

Creates a single account.

post/api/v1/account

Request body

accountNumberstring required

Account number

accountTypestring required

Account type

namestring required

Account name

descriptionstring required

Account description

isStandardboolean

Is standard account

Response

Created

idstring

Account ID

accountNumberstring

Account number

accountTypestring

Account type

namestring

Account name

descriptionstring

Account description

isStandardboolean

Is standard account

deletedAtstring date-time nullable

Deleted at timestamp

createdAtstring date-time

Created at timestamp

updatedAtstring date-time

Updated at timestamp

Example response

{
  "id": "1",
  "accountNumber": "1000",
  "accountType": "asset",
  "name": "Cash Account",
  "description": "Main cash account for daily operations",
  "isStandard": false,
  "deletedAt": null,
  "createdAt": "2022-01-01T00:00:00Z",
  "updatedAt": "2022-01-01T00:00:00Z"
}