POST
/
v1
/
sms
/
webhook
/
update
curl --request POST \
  --url https://api.bland.ai/v1/sms/webhook/update \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "phone_number": "<string>",
  "webhook": "<string>"
}'
{
  "status": "success"
}

Headers

authorization
string
required

Your API key for authentication.

Body

phone_number
string

The phone number to update.

webhook
string

The webhook to fire when an SMS is received.

{
  "status": "success"
}