Vapi · Schema

AutoReloadPlan

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
credits number This the amount of credits to reload.
threshold number This is the limit at which the reload is triggered.
View JSON Schema on GitHub

JSON Schema

vapi-autoreloadplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutoReloadPlan",
  "title": "AutoReloadPlan",
  "type": "object",
  "properties": {
    "credits": {
      "type": "number",
      "description": "This the amount of credits to reload."
    },
    "threshold": {
      "type": "number",
      "description": "This is the limit at which the reload is triggered."
    }
  },
  "required": [
    "credits",
    "threshold"
  ]
}