Vapi · Schema

TwilioTransportMessage

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
transport string This is the transport type.
twiml string This is the TwiML to send to the Twilio call.
View JSON Schema on GitHub

JSON Schema

vapi-twiliotransportmessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TwilioTransportMessage",
  "title": "TwilioTransportMessage",
  "type": "object",
  "properties": {
    "transport": {
      "type": "string",
      "description": "This is the transport type.",
      "enum": [
        "twilio"
      ]
    },
    "twiml": {
      "type": "string",
      "description": "This is the TwiML to send to the Twilio call."
    }
  },
  "required": [
    "transport",
    "twiml"
  ]
}