Vapi · Schema

CreateFileDTO

Artificial IntelligenceVoiceAgentsReal-TimeCPaaS

Properties

Name Type Description
file string This is the File you want to upload for use with the Knowledge Base.
View JSON Schema on GitHub

JSON Schema

vapi-createfiledto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFileDTO",
  "title": "CreateFileDTO",
  "type": "object",
  "properties": {
    "file": {
      "type": "string",
      "description": "This is the File you want to upload for use with the Knowledge Base.",
      "format": "binary"
    }
  },
  "required": [
    "file"
  ]
}