Vapi · Schema

ClientInboundMessageEndCall

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string This is the type of the message. Send "end-call" message to end the call.
View JSON Schema on GitHub

JSON Schema

vapi-clientinboundmessageendcall-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientInboundMessageEndCall",
  "title": "ClientInboundMessageEndCall",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "This is the type of the message. Send \"end-call\" message to end the call.",
      "enum": [
        "end-call"
      ]
    }
  },
  "required": [
    "type"
  ]
}