GET
/
v0
/
business
/
{business_id}
/
journal-entries
curl --request GET \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/journal-entries \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ],
  "pagination": {
    "next_page_token": "<string>",
    "previous_page_token": "<string>"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

business_id
string
required

Query Parameters

start_datetime
string | null

Include Journal Entries after this period (inclusive) in ISO-8601 format

end_datetime
string | null

Include Journal Entries before this period (inclusive) in ISO-8601 format

ledger_id
string[] | null

Include only Journal Entries that have at least one line in the given Ledgers

needs_review
boolean | null

Include only Journal Entries that need review

page_token
string | null
page_size
integer
default:100
Required range: 1 <= x <= 100

Response

200
application/json
Successful Response
data
object[]
required
pagination
object
required