v1
latestOpenAPI 3.1.02026-07-24111224223.3 KBJournal Entries
Creates a journal entry
Posts a balanced manual journal entry with explicit debit and credit lines, posting date, and subsidiary scope for GL corrections. Prefer dedicated AR or AP APIs when the business event already exists; reserve this for adjustments your automation cannot model yet.
post/journal-entries
Request body
Example request
{
"currency": "USD",
"items": [
{
"amount": {
"amount": "1.01",
"currency": "USD"
},
"account_code": "11112"
}
],
"exchange_rate": {
"base": "USD",
"target": "USD"
}
}Response
OK
Example response
{
"currency": "USD",
"items": [
{
"amount": {
"amount": "1.01",
"currency": "USD"
},
"original_transaction_amount": {
"amount": "1.01",
"currency": "USD"
},
"account_code": "11112"
}
],
"exchange_rate": {
"base": "USD",
"target": "USD"
}
}