GET
/
agents
/
{agentName}
/
revisions
List all agent revisions
curl --request GET \
  --url https://api.blaxel.ai/v0/agents/{agentName}/revisions \
  --header 'Authorization: Bearer <token>'
[
  {
    "active": true,
    "canary": true,
    "createdAt": "<string>",
    "createdBy": "<string>",
    "id": "<string>",
    "previousActive": true,
    "status": "<string>",
    "trafficPercent": 123
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

agentName
string
required

Name of the agent

Response

200 - application/json

successful operation

The response is of type object[].