List invocations

List invocations. Optionally filter by application name, action name, status, deployment ID, or start time.

GET/invocations

List invocations. Optionally filter by application name, action name, status, deployment ID, or start time.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

app_name?string

Filter results by application name.

version?string

Filter results by application version.

action_name?string

Filter results by action name.

deployment_id?string

Filter results by deployment ID.

status?string

Filter results by invocation status.

Value in

  • "queued"
  • "running"
  • "succeeded"
  • "failed"
since?string

Show invocations that have started since the given time (RFC timestamps or durations like 5m).

limit?integer

Limit the number of invocations to return.

Range1 <= value <= 100
Default20
offset?integer

Offset the number of invocations to return.

Range0 <= value
Default0
query?string

Search invocations by ID, app name, or action name.

Response

application/json

A list of invocations.

[index: integer]?
curl -X GET "https://example.com/invocations"
[  {    "id": "string",    "app_name": "string",    "version": "string",    "action_name": "string",    "payload": "string",    "output": "string",    "started_at": "2019-08-24T14:15:22Z",    "finished_at": "2019-08-24T14:15:22Z",    "status": "queued",    "status_reason": "string"  }]