Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request DELETE \
--url https://prod.featherhq.com/api/v1/agents/{agentId}/versions/{versionId} \
--header 'Authorization: Bearer <token>'{
"agentId": "<string>",
"versionId": "<string>",
"success": true
}Delete a version of an agent
curl --request DELETE \
--url https://prod.featherhq.com/api/v1/agents/{agentId}/versions/{versionId} \
--header 'Authorization: Bearer <token>'{
"agentId": "<string>",
"versionId": "<string>",
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.