Invocations
List invocations
List invocations. Optionally filter by application name, action name, status, deployment ID, or start time.
get/invocations
Query parameters
app_namestring
Filter results by application name.
versionstring
Filter results by application version.
action_namestring
Filter results by action name.
deployment_idstring
Filter results by deployment ID.
status'queued' | 'running' | 'succeeded' | 'failed'
Filter results by invocation status.
sincestring
Example:2025-06-20T12:00:00Z
Show invocations that have started since the given time (RFC timestamps or durations like 5m).
limitinteger
Limit the number of invocations to return.
offsetinteger
Offset the number of invocations to return.
querystring
Search invocations by ID, app name, or action name.
Response
A list of invocations.
Example response
[
{
"id": "rr33xuugxj9h0bkf1rdt2bet",
"app_name": "my-app",
"version": "1.0.0",
"action_name": "analyze",
"payload": "{\"data\":\"example input\"}",
"output": "{\"result\":\"success\",\"data\":\"processed input\"}",
"started_at": "2024-05-19T15:30:00.000000000Z07:00",
"finished_at": "2024-05-19T15:30:05.000000000Z07:00",
"status": "succeeded",
"status_reason": "Invocation completed successfully"
}
]