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": "<string>",
    "message": "<string>",
    "user": "<string>",
    "id": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.getasset.com/llms.txt

Use this file to discover all available pages before exploring further.

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

The id of the business

Example:

"biz_GA6EG2qFxA97NZHtxeLPUy"

journal_entry_id
string<je_string>
required

The id of the journal entry

Example:

"je_R2fAXCjqJPdpYata112zyW"

Body

application/json
message
string
required

The message of the note

Response

Successful Response

data
NotePublic · object
required