Accounting
Retrieves journals
get/Journals
Query parameters
offsetinteger
Offset by a specified journal number. e.g. journals with a JournalNumber greater than the offset will be returned
paymentsOnlyboolean
Filter to retrieve journals on a cash basis. Journals are returned on an accrual basis by default.
Headers
If-Modified-Sincestring date-time
Only records created or modified since this timestamp will be returned
Response
Success - return response of type Journals array with all Journals
Example response
{
"Journals": [
{
"CreatedDateUTC": "/Date(1573755038314)/",
"JournalLines": [
{
"JournalLineID": "7be9db36-3598-4755-ba5c-c2dbc8c4a7a2",
"AccountID": "ceef66a5-a545-413b-9312-78a53caadbc4",
"AccountName": "Checking Account",
"Description": "My business checking account",
"NetAmount": 4130.98,
"GrossAmount": 4130.98,
"TaxName": "Tax Exempt"
}
]
}
]
}