curl --request GET \
--url https://prod.featherhq.com/api/v1/agents/{agentId}/deployments \
--header 'X-API-Key: <api-key>'
{
"deployments": [
{
"id": "<string>",
"agentVersionId": "<string>",
"agentId": "<string>",
"deploymentStage": "DEV",
"deployedAt": "<string>",
"createdAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}
List all deployments for an agent
curl --request GET \
--url https://prod.featherhq.com/api/v1/agents/{agentId}/deployments \
--header 'X-API-Key: <api-key>'
{
"deployments": [
{
"id": "<string>",
"agentVersionId": "<string>",
"agentId": "<string>",
"deploymentStage": "DEV",
"deployedAt": "<string>",
"createdAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}
List of agent deployments
The response is of type object
.