Starts a call for a given conversation and agent.
Conversations are unique by the combination of user and conversation ID together.
This is a beta endpoint and not yet recommended for production use.
Request Body
The unique identifier for the conversation
The email address of the agent handling the call
Additional metadata to associate with the call
Response
Indicates if the call was successfully started
Error Responses
Error message when the user does not exist
curl -X POST 'https://app.reddy.io/api/v1/call/start' \
-H 'Authorization: Bearer your_api_key' \
-H 'Content-Type: application/json' \
-d '{
"conversation_id": "12345",
"agent_email": "[email protected]",
"metadata": {
"source": "inbound",
"queue": "support"
}
}'