curl --request PATCH \
--url https://api.dev.kathan.tech/calls/{call_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>"
}
'{
"id": "<string>",
"to_number": "<string>",
"provider": "<string>",
"status": "<string>",
"phone_number_id": "<string>",
"assistant_id": "<string>",
"from_number": "<string>",
"provider_call_sid": "<string>",
"direction": "<string>",
"created_at": "<string>",
"duration_seconds": 123,
"timestamp": "<string>",
"summary": "<string>",
"greeting_one_liner": "<string>",
"user_messages": 123,
"agent_messages": 123
}curl --request PATCH \
--url https://api.dev.kathan.tech/calls/{call_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>"
}
'{
"id": "<string>",
"to_number": "<string>",
"provider": "<string>",
"status": "<string>",
"phone_number_id": "<string>",
"assistant_id": "<string>",
"from_number": "<string>",
"provider_call_sid": "<string>",
"direction": "<string>",
"created_at": "<string>",
"duration_seconds": 123,
"timestamp": "<string>",
"summary": "<string>",
"greeting_one_liner": "<string>",
"user_messages": 123,
"agent_messages": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Was this page helpful?