Vapi · Schema

ServerMessageResponseCallEndpointingRequest

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
timeoutSeconds number This is the timeout in seconds to wait before considering the user's speech as finished.
View JSON Schema on GitHub

JSON Schema

vapi-servermessageresponsecallendpointingrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerMessageResponseCallEndpointingRequest",
  "title": "ServerMessageResponseCallEndpointingRequest",
  "type": "object",
  "properties": {
    "timeoutSeconds": {
      "type": "number",
      "description": "This is the timeout in seconds to wait before considering the user's speech as finished.",
      "minimum": 0,
      "maximum": 15
    }
  },
  "required": [
    "timeoutSeconds"
  ]
}