Skip to main content

Endpoint

POST https://api.ugc.inc/automations/list-all-runs

Request Body

limit
number
Maximum number of runs to return.
reviewStatus
'pending_review' | 'approved' | 'rejected' | 'all'
Optional review status filter.
templateId
string
Optional template filter.

Response

data
Array<{ run: AutomationRun; templateName: string; nodeCount: number; completedNodeCount: number }>
Runs with template metadata.

TypeScript

const res = await client.automations.listAllRuns({ reviewStatus: 'pending_review', limit: 50 });