Vapi · Schema

GoHighLevelContactGetToolProviderDetails

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. "gohighlevel.contact.get" for GoHighLevel contact get tool.
View JSON Schema on GitHub

JSON Schema

vapi-gohighlevelcontactgettoolproviderdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoHighLevelContactGetToolProviderDetails",
  "title": "GoHighLevelContactGetToolProviderDetails",
  "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": [
        "gohighlevel.contact.get"
      ],
      "description": "The type of tool. \"gohighlevel.contact.get\" for GoHighLevel contact get tool."
    }
  },
  "required": [
    "type"
  ]
}