Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Agent updated successfully
curl --request PATCH \
--url https://prod.featherhq.com/api/v1/agents/{agentId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"callObservabilityEnabled": true
}'{
"agent": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"inboundPhoneNumbers": [
{
"id": "<string>"
}
],
"outboundPhoneNumbers": [
{
"id": "<string>"
}
],
"cekuraAgentId": 123,
"cekuraPhoneNumberId": "<string>",
"callObservabilityEnabled": false
}
}Update an existing agent
curl --request PATCH \
--url https://prod.featherhq.com/api/v1/agents/{agentId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"callObservabilityEnabled": true
}'{
"agent": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"inboundPhoneNumbers": [
{
"id": "<string>"
}
],
"outboundPhoneNumbers": [
{
"id": "<string>"
}
],
"cekuraAgentId": 123,
"cekuraPhoneNumberId": "<string>",
"callObservabilityEnabled": false
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Agent updated successfully
Show child attributes