Skip to main content
GET
/
v0
/
business
/
{business_id}
/
journal-entries
/
{journal_entry_id}
/
notes
List Notes for a Journal Entry
curl --request GET \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/journal-entries/{journal_entry_id}/notes \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "journal_entry_id": "je_WQMDNUHpBThYSNh4AprDBo",
      "message": "<string>",
      "user": "<string>",
      "id": "nt_R2fAXCjqJPdpYata112zyW",
      "created_at": "2023-03-01T12:00:00Z"
    }
  ],
  "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<biz_string>
required
journal_entry_id
string<je_string>
required

Query Parameters

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

Response

Successful Response

data
NotePublic · object[]
required
pagination
object
required