Airtable · Arazzo Workflow
Airtable Consume Webhook Payloads
Version 1.0.0
Discover a webhook and drain its payloads using cursor pagination.
View Spec
View on GitHub
ApplicationsCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows
Provider
Workflows
consume-webhook-payloads
List webhooks then drain payloads using cursor pagination.
Resolves a webhook on the base, fetches the first page of webhook payloads, and fetches the next page using the cursor returned from the first page to demonstrate cursor-based pagination.
1
listWebhooks
listWebhooks
List the webhooks registered on the base and select the first webhook id to drain payloads from.
2
listFirstPage
listWebhookPayloads
Read the first page of payloads queued for the resolved webhook. The response carries a cursor used to request the following page.
3
listNextPage
listWebhookPayloads
Read the next page of payloads by passing the cursor returned from the first page, continuing where the previous page left off.