Vapi · Schema

GhlToolProviderDetails

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
templateUrl string This is the Template URL or the Snapshot URL corresponding to the Template.
setupInstructions array
type string The type of tool. "ghl" for GHL tool.
workflowId string
workflowName string
webhookHookId string
webhookHookName string
locationId string
View JSON Schema on GitHub

JSON Schema

vapi-ghltoolproviderdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GhlToolProviderDetails",
  "title": "GhlToolProviderDetails",
  "type": "object",
  "properties": {
    "templateUrl": {
      "type": "string",
      "description": "This is the Template URL or the Snapshot URL corresponding to the Template."
    },
    "setupInstructions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ToolTemplateSetup"
      }
    },
    "type": {
      "type": "string",
      "enum": [
        "ghl"
      ],
      "description": "The type of tool. \"ghl\" for GHL tool."
    },
    "workflowId": {
      "type": "string"
    },
    "workflowName": {
      "type": "string"
    },
    "webhookHookId": {
      "type": "string"
    },
    "webhookHookName": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    }
  },
  "required": [
    "type"
  ]
}