Skip to main content
POST
/
api
/
webhooks
/
elevenlabs
/
personalize
POST /api/webhooks/elevenlabs/personalize
curl --request POST \
  --url https://api.example.com/api/webhooks/elevenlabs/personalize \
  --header 'Content-Type: application/json' \
  --data '
{
  "caller_id": "<string>",
  "agent_id": "<string>",
  "called_number": "<string>",
  "call_sid": "<string>"
}
'
POST endpoint for /webhooks/elevenlabs/personalize

Request Body

caller_id
string
required
caller_id
agent_id
string
required
agent_id
called_number
string
required
called_number
call_sid
string
call_sid

Response

Returns unknown on success.

Example

curl -X POST https://your-domain.com/api/webhooks/elevenlabs/personalize \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN"