Vapi · Schema

DialPlanEntry

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
phoneNumberId string The phone number ID to use for calling the customers in this entry.
customers array The list of customers to call using this phone number.
View JSON Schema on GitHub

JSON Schema

vapi-dialplanentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DialPlanEntry",
  "title": "DialPlanEntry",
  "type": "object",
  "properties": {
    "phoneNumberId": {
      "type": "string",
      "description": "The phone number ID to use for calling the customers in this entry."
    },
    "customers": {
      "description": "The list of customers to call using this phone number.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreateCustomerDTO"
      }
    }
  },
  "required": [
    "phoneNumberId",
    "customers"
  ]
}