messagebird · Schema

VoiceWebhookCreate

Properties

Name Type Description
url string The URL to receive webhook callbacks.
token string A token for webhook signature validation.
View JSON Schema on GitHub

JSON Schema

messagebird-voicewebhookcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoiceWebhookCreate",
  "title": "VoiceWebhookCreate",
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL to receive webhook callbacks."
    },
    "token": {
      "type": "string",
      "description": "A token for webhook signature validation."
    }
  }
}