Skip to main content

List Journals

Retrieve a list of journal entries for the authenticated business.
schema
string
required
Schema identifier. Must be journals
page
number
Page number for pagination
limit
number
Number of records per page
date_order
string
Order records by date. Values: asc (oldest first) or desc (newest first). Default: desc

Get Journal

Retrieve a specific journal entry by UUID.
uuid
string
required
Journal UUID

Create Journal

Create a new journal entry using AI prompt.
prompt
string
required
Description of the journal entry to create
attachments
array
Array of attachment URLs or file references
text_attachment
string
Additional text context
curl -X POST "https://api.useadam.io/v1/adam/journals" \
  -H "X-API-Key: your_secret_key" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Create a journal entry to record depreciation of $500 for office equipment"
  }'

Update Journal

Update an existing journal entry by UUID.
uuid
string
required
Journal UUID

Delete Journal

Delete a journal entry by UUID.
uuid
string
required
Journal UUID