Skip to main content
PUT
/
api
/
organizations
/
{organizationId}
/
missed-call-message
Update missed call auto-message configuration
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/{organizationId}/missed-call-message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data @- <<EOF
{
  "missedCallMessage": "Hi {{contactName}}, sorry we missed your call. We'll get back to you shortly.",
  "missedCallAutoMessageEnabled": true
}
EOF
{
  "missedCallMessage": "Hi {{contactName}}, sorry we missed your call. We'll get back to you shortly.",
  "missedCallAutoMessageEnabled": true
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required

Body

application/json
missedCallMessage
string

SMS auto-reply sent after a missed inbound call; supports placeholder tokens like {{contactName}} and {{agentName}}.

Maximum string length: 500
missedCallAutoMessageEnabled
boolean

Master toggle: when false, no missed-call auto-message is sent even if the template is populated.

Response

Missed call configuration updated

missedCallMessage
string | null
Maximum string length: 500
missedCallAutoMessageEnabled
boolean