ActUpon Docs
API: Inbox
Query the pending workflow inbox for agent-style processing, filtering by action type, destination, and claim status.
GET /api/screenshotaction/inbox
The inbox endpoint is the queue-oriented view of ActUpon items. It returns completed extractions that still have a workflow status of pending or done.
Supported query parameters:
format:jsonormd.workflow_status:pendingordone.requested_action:calendar,reminder,save, orworkflow.type:event,media, orreference.destination_kindanddestination_namefor workflow-target filtering.claim_status:all,available,claimed, ormine.limit: 1 to 200, default 20.
curl -X GET \
"https://actupon.app/api/screenshotaction/inbox?format=json&workflow_status=pending&requested_action=workflow&claim_status=available" \
-H "Authorization: Bearer actpt_your_token_here"When to use inbox instead of items
- Use
/itemsfor general saved history and direct item lookup. - Use
/inboxwhen your agent or worker is processing a queue of pending workflow tasks.