List invocations
List invocations. Optionally filter by application name, action name, status, deployment ID, or start time.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Filter results by application name.
Filter results by application version.
Filter results by action name.
Filter results by deployment ID.
Filter results by invocation status.
queued, running, succeeded, failed Show invocations that have started since the given time (RFC timestamps or durations like 5m).
"2025-06-20T12:00:00Z"
Limit the number of invocations to return.
1 <= x <= 100Offset the number of invocations to return.
x >= 0Search invocations by ID, app name, or action name.
Response
A list of invocations.
Name of the action invoked
"analyze"
Name of the application
"my-app"
ID of the invocation
"rr33xuugxj9h0bkf1rdt2bet"
RFC 3339 Nanoseconds timestamp when the invocation started
"2024-05-19T15:30:00.000000000Z07:00"
Status of the invocation
queued, running, succeeded, failed "succeeded"
Version label for the application
"1.0.0"
RFC 3339 Nanoseconds timestamp when the invocation finished (null if still running)
"2024-05-19T15:30:05.000000000Z07:00"
Output produced by the action, rendered as a JSON string. This could be: string, number, boolean, array, object, or null.
"{\"result\":\"success\",\"data\":\"processed input\"}"
Payload provided to the invocation. This is a string that can be parsed as JSON.
"{\"data\":\"example input\"}"
Status reason
"Invocation completed successfully"