Skip to main content

List Income

Retrieve a list of income records for the authenticated business.
schema
string
required
Schema identifier. Must be income
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 Income

Retrieve a specific income record by UUID or source_uuid.
uuid
string
required
Income UUID or source_uuid

Create Income

Create a new income record using AI prompt.
prompt
string
required
Description of the income record 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/income" \
  -H "X-API-Key: your_secret_key" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Create an income record for $2,000 from product sales"
  }'

Update Income

Update an existing income record by UUID or source_uuid.
uuid
string
required
Income UUID or source_uuid

Delete Income

Delete an income record by UUID or source_uuid.
uuid
string
required
Income UUID or source_uuid