Airtable · Schema

WebhookCreateRequest

Request body for creating a new webhook.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
notificationUrl string The URL that will receive POST notifications when changes occur.
specification object
View JSON Schema on GitHub

JSON Schema

airtable-webhookcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhookCreateRequest",
  "title": "WebhookCreateRequest",
  "type": "object",
  "description": "Request body for creating a new webhook.",
  "properties": {
    "notificationUrl": {
      "type": "string",
      "format": "uri",
      "description": "The URL that will receive POST notifications when changes occur."
    },
    "specification": {
      "$ref": "#/components/schemas/WebhookSpecification"
    }
  },
  "required": [
    "notificationUrl"
  ]
}