Vapi · Schema

SayPhoneNumberHookAction

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string This is the type of action - must be "say"
exact string This is the message to say
View JSON Schema on GitHub

JSON Schema

vapi-sayphonenumberhookaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SayPhoneNumberHookAction",
  "title": "SayPhoneNumberHookAction",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "This is the type of action - must be \"say\"",
      "enum": [
        "say"
      ]
    },
    "exact": {
      "type": "string",
      "description": "This is the message to say",
      "maxLength": 4000
    }
  },
  "required": [
    "type",
    "exact"
  ]
}