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