Airtable · Schema

WebhookPayloadList

A paginated list of webhook payloads.

ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheets

Properties

Name Type Description
payloads array
cursor integer The cursor for fetching the next page of payloads.
mightHaveMore boolean Whether there may be more payloads to fetch.
View JSON Schema on GitHub

JSON Schema

airtable-webhookpayloadlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhookPayloadList",
  "title": "WebhookPayloadList",
  "type": "object",
  "description": "A paginated list of webhook payloads.",
  "properties": {
    "payloads": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WebhookPayload"
      }
    },
    "cursor": {
      "type": "integer",
      "description": "The cursor for fetching the next page of payloads."
    },
    "mightHaveMore": {
      "type": "boolean",
      "description": "Whether there may be more payloads to fetch."
    }
  },
  "required": [
    "payloads"
  ]
}