GET
/
api
/
v1
/
agent-executions
{
  "data": [
    {
      "id": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "agentId": "<string>",
      "workspaceId": "<string>",
      "state": {
        "status": "PENDING_INPUTS"
      }
    }
  ],
  "hasMore": false,
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

agent_execution_id
string[] | null
agent_id
string[] | null
workspace_id
string[] | null
status
enum<string>[] | null
Available options:
PENDING_INPUTS,
PENDING_DATA_EXTRACTION,
PENDING_REVIEW,
CANCELED,
CONFIRMED,
DELIVERED_TO_DESTINATION
skip
integer
default:
0
Required range: x >= 0
limit
integer
default:
100
Required range: 1 <= x <= 100
expand
enum<string>[] | null

total_count: Include the total number of agent executions that match the query, only accurate up to 100.

Available options:
total_count

Response

200
application/json
Successful Response
data
object[]
required
hasMore
boolean
default:
false

Whether there are more agent executions that match the query that were not included in this response.

totalCount
integer | null

The total number of agent executions that match the query, only accurate up to 100.