Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://prod.featherhq.com/api/v1/agents/{agentId}/deployments \
--header 'Authorization: Bearer <token>'{
"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 'Authorization: Bearer <token>'{
"deployments": [
{
"id": "<string>",
"agentVersionId": "<string>",
"agentId": "<string>",
"deploymentStage": "DEV",
"deployedAt": "<string>",
"createdAt": "<string>"
}
],
"pagination": {
"limit": 10,
"nextCursor": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.