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
}
]
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
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Name of the agent
successful operation
The response is of type object[]
.
Was this page helpful?