Skip to main content
POST
/
api
/
webhook
/
elevenlabs
/
tools
/
update-contact
ElevenLabs tool: update contact fields mid-call
curl --request POST \
  --url https://your-instance.example.com/api/webhook/elevenlabs/tools/update-contact \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone_number": "+14165550100",
  "first_name": "Alex",
  "last_name": "Morgan",
  "email": "alex.morgan@example.com",
  "called_id": "+12362320246"
}
'
{
  "success": true,
  "message": "Contact updated",
  "updated_fields": [
    "firstName",
    "lastName",
    "email"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

ElevenLabs update-contact tool args. phone_number identifies the contact; at least one of first_name/last_name/email must be set. Phone numbers themselves cannot be changed via this endpoint.

phone_number
string
required

Contact phone number (E.164 preferred).

first_name
string
last_name
string
email
string<email>

Appended to the contact's email[] (history preserved); becomes primary if none is set.

called_id
string

Twilio/Sinch called number — used by ElevenLabs to route auth context.

called_number
string

Alternative key for called_id.

Response

Update result. Inspect success to disambiguate applied update vs. recoverable error.

success
boolean
required
message
string
updated_fields
string[]

Mongo field paths that were $set (e.g. firstName, lastName, email).

error
string

Present when success is false.