Skip to main content
POST
/
v0
/
business
/
{business_id}
/
journal-entries
/
{journal_entry_id}
/
notes
Create a note against a journal entry
curl --request POST \
  --url https://api.sandbox.getasset.com/v0/business/{business_id}/journal-entries/{journal_entry_id}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>"
}'
{
  "data": {
    "journal_entry_id": "je_WQMDNUHpBThYSNh4AprDBo",
    "message": "<string>",
    "user": "<string>",
    "id": "nt_R2fAXCjqJPdpYata112zyW",
    "created_at": "2023-03-01T12:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

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

Headers

x-user-id
string | null

Optional external entity identifier that performed the action

Path Parameters

business_id
string<biz_string>
required
journal_entry_id
string<je_string>
required

Body

application/json
message
string
required

The message of the note

Response

Successful Response

data
object
required