API Overview
Journal Entry
Reports
Update a Journal Entry
curl --request PATCH \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/journal-entries/{journal_entry_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"datetime": "2023-11-07T05:31:56Z",
"line_changes": {
"create_lines": [
{
"ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
"description": "<string>",
"debit_credit": "<string>",
"amount": 1
}
],
"delete_lines": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
},
"needs_review": true
}'
{
"data": {
"business_id": "Pk2fNFDd8wj7EFeLWJywc7",
"description": "<string>",
"datetime": "2023-11-07T05:31:56Z",
"needs_review": true,
"id": "R2fAXCjqJPdpYata112zyW",
"transaction_id": "WQMDNUHpBThYSNh4AprDBo",
"line_entries": [
{
"ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
"description": "<string>",
"debit_credit": "<string>",
"amount": 123,
"id": "GA6EG2qFxA97NZHtxeLPUy",
"journal_entry_id": "R2fAXCjqJPdpYata112zyW",
"transaction_id": "WQMDNUHpBThYSNh4AprDBo"
}
],
"categorization_method": "transfer"
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
The description of the Journal Entry
The datetime the Journal Entry was created in UTC ISO-8601 format
An object with optional create
and delete
values that modify the
lines in the Journal Entry. To update a line, simply remove the old line and add a
new one.
A list of new Line Entries to add
The ID of the Ledger associated with the Line Entry
"Ns6rRRLYVZPh4cVB7MDby5"
The line entry description
512
Indicates wether this a debit or credit line
The line amount in decimal dollar cents, and it most always be positive
x >= 0
A list of Line Entry IDs to delete
Whether the Journal Entry needs review
Response
The ID of the Business that is associated with the Journal Entry
"Pk2fNFDd8wj7EFeLWJywc7"
512
The ID of the Journal Entry
"R2fAXCjqJPdpYata112zyW"
The ID of the associated Transaction if the Journal Entry was created from a Transaction
"WQMDNUHpBThYSNh4AprDBo"
The Line Entries for this Journal Entry
The ID of the Ledger associated with the Line Entry
"Ns6rRRLYVZPh4cVB7MDby5"
The line entry description
512
Indicates wether this a debit or credit line
The line amount in decimal dollar cents, and it most always be positive
The ID of the Line Entry
"GA6EG2qFxA97NZHtxeLPUy"
The ID of the parent Journal Entry
"R2fAXCjqJPdpYata112zyW"
The ID of the associated Transaction if the Line Entry was created from a Transaction
"WQMDNUHpBThYSNh4AprDBo"
The method used to categorize the Journal Entry
transfer
, similarity
, ai
, uncategorized
, manual
curl --request PATCH \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/journal-entries/{journal_entry_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"datetime": "2023-11-07T05:31:56Z",
"line_changes": {
"create_lines": [
{
"ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
"description": "<string>",
"debit_credit": "<string>",
"amount": 1
}
],
"delete_lines": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
},
"needs_review": true
}'
{
"data": {
"business_id": "Pk2fNFDd8wj7EFeLWJywc7",
"description": "<string>",
"datetime": "2023-11-07T05:31:56Z",
"needs_review": true,
"id": "R2fAXCjqJPdpYata112zyW",
"transaction_id": "WQMDNUHpBThYSNh4AprDBo",
"line_entries": [
{
"ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
"description": "<string>",
"debit_credit": "<string>",
"amount": 123,
"id": "GA6EG2qFxA97NZHtxeLPUy",
"journal_entry_id": "R2fAXCjqJPdpYata112zyW",
"transaction_id": "WQMDNUHpBThYSNh4AprDBo"
}
],
"categorization_method": "transfer"
}
}