Skip to main content
GET
/
api
/
organizations
/
{organizationId}
/
missed-call-message
/
placeholders
List supported placeholders for missed-call messages
curl --request GET \
  --url https://your-instance.example.com/api/organizations/{organizationId}/missed-call-message/placeholders \
  --header 'Authorization: Bearer <token>'
{
  "placeholders": [
    {
      "token": "{{contactName}}",
      "label": "Contact full name"
    },
    {
      "token": "{{agentName}}",
      "label": "Assigned agent name"
    },
    {
      "token": "{{organizationName}}",
      "label": "Organization display name"
    }
  ]
}

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

Response

Placeholders returned

placeholders
object[]

List of supported placeholder tokens. Shape is defined by helpers/placeholder-processor.getAvailablePlaceholders().