Airtable · Schema

WebhookCreateResponse

Response after creating a new webhook, including the MAC secret.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
id string The unique identifier of the newly created webhook.
macSecretBase64 string The Base64-encoded MAC secret used to verify the authenticity of webhook notification payloads.
expirationTime string The time when the webhook will expire if not refreshed.
View JSON Schema on GitHub

JSON Schema

airtable-webhookcreateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhookCreateResponse",
  "title": "WebhookCreateResponse",
  "type": "object",
  "description": "Response after creating a new webhook, including the MAC secret.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the newly created webhook."
    },
    "macSecretBase64": {
      "type": "string",
      "description": "The Base64-encoded MAC secret used to verify the authenticity of webhook notification payloads."
    },
    "expirationTime": {
      "type": "string",
      "format": "date-time",
      "description": "The time when the webhook will expire if not refreshed."
    }
  },
  "required": [
    "id",
    "macSecretBase64"
  ]
}