v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Accounting entry

Create accounting entry

Create an accounting entry.

This endpoint generates an Accounting entry created event.

Refer to the How to create accounting entries guide for more information.

post/v1/accounting-entries

Request body

amountnumber required

Accounting entry amount

entry_type_idinteger required

Entry type ID

event_datestring date required

Event date

program_idinteger required

Related program ID

account_idinteger

Related account ID, required if Transaction_ID is present.

credit_accounting_accountstring

Credit accounting account

debit_accounting_accountstring

Debit accounting account

tracking_idstring

Tracking ID in UUID format, optional idempotence key. You can use Online UUID Generator to generate a random UUID value.

transaction_idinteger

Related transaction ID

Example request

{
  "amount": 10,
  "entry_type_id": 2100,
  "event_date": "2021-02-01T00:00:00.000Z",
  "program_id": 12,
  "account_id": 21,
  "credit_accounting_account": "0",
  "debit_accounting_account": "0",
  "tracking_id": "c5f2f677-d9aa-4285-8a08-d297a72d8949",
  "transaction_id": 12342
}

Response

Request accepted but not processed yet.

amountnumber required

Accounting entry amount

entry_type_idinteger required

Entry type ID

event_datestring date required

Event date

program_idinteger required

Related program ID

account_idinteger

Related account ID, required if Transaction_ID is present.

credit_accounting_accountstring

Credit accounting account

debit_accounting_accountstring

Debit accounting account

tracking_idstring

Tracking ID in UUID format, optional idempotence key. You can use Online UUID Generator to generate a random UUID value.

transaction_idinteger

Related transaction ID

Example response

{
  "amount": 10,
  "entry_type_id": 2100,
  "event_date": "2021-02-01T00:00:00.000Z",
  "program_id": 12,
  "account_id": 21,
  "credit_accounting_account": "0",
  "debit_accounting_account": "0",
  "tracking_id": "c5f2f677-d9aa-4285-8a08-d297a72d8949",
  "transaction_id": 12342
}