Webhook payloads
Sample payloads and headers sent by Distro Workflows webhooks.
Last updated
{
"event": "meeting_booked",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"source_type": "router",
"source_id": 123,
"source_title": "Demo Request Router",
"submission": {
"id": 789,
"uuid": "sub-xyz789-abc123",
"form_data": {
"email": "jane@example.com",
"company": "Acme Corp",
"employees": "50-100",
"message": "Interested in enterprise plan"
},
"time_zone": "America/New_York",
"source_url": "https://example.com/contact",
"created_at": "2024-01-15T10:25:00Z"
},
"booking": {
"id": 456,
"uuid": "book-abc123-def456",
"title": "Discovery Call with Acme Corp",
"start_time": "2024-01-20T14:00:00Z",
"end_time": "2024-01-20T14:30:00Z",
"status": "scheduled",
"meeting_url": "https://meet.google.com/abc-defg-hij",
"time_zone": "America/New_York",
"notes": "Looking forward to discussing your needs."
},
"assignee": {
"id": 1,
"email": "alex@yourcompany.com",
"first_name": "Alex",
"last_name": "Smith"
},
"attendees": [
{
"name": "Jane Doe",
"email": "jane@example.com"
}
]
}
}{
"event": "form_submitted",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"source_type": "router",
"source_id": 123,
"source_title": "Contact Form Router",
"submission": {
"id": 789,
"uuid": "sub-xyz789-abc123",
"form_data": {
"email": "jane@example.com",
"company": "Acme Corp",
"employees": "50-100"
},
"time_zone": "America/New_York",
"source_url": "https://example.com/contact",
"created_at": "2024-01-15T10:30:00Z"
},
"booking": null,
"assignee": {
"id": 1,
"email": "alex@yourcompany.com",
"first_name": "Alex",
"last_name": "Smith"
},
"attendees": []
}
}{
"event": "meeting_booked",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"source_type": "click_router",
"source_id": 456,
"source_title": "Sales Team Round Robin",
"booking": {
"id": 789,
"uuid": "book-def456-ghi789",
"title": "Sales Call",
"start_time": "2024-01-22T15:00:00Z",
"end_time": "2024-01-22T15:30:00Z",
"status": "scheduled",
"meeting_url": "https://zoom.us/j/123456789",
"time_zone": "America/Los_Angeles",
"notes": null
},
"assignee": {
"id": 5,
"email": "sarah@yourcompany.com",
"first_name": "Sarah",
"last_name": "Johnson"
},
"attendees": [
{
"name": "John Smith",
"email": "john@prospect.com"
}
]
}
}{
"event": "meeting_booked",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"source_type": "booking_link",
"source_id": 101,
"source_slug": "alex-30min",
"booking": {
"id": 1001,
"uuid": "book-jkl012-mno345",
"title": "30-min Meeting with Alex",
"start_time": "2024-01-25T09:00:00Z",
"end_time": "2024-01-25T09:30:00Z",
"status": "scheduled",
"meeting_url": "https://meet.google.com/xyz-abcd-efg",
"time_zone": "Europe/London",
"notes": "Want to discuss partnership opportunities"
},
"assignee": {
"id": 1,
"email": "alex@yourcompany.com",
"first_name": "Alex",
"last_name": "Smith"
},
"attendees": [
{
"name": "Emily Chen",
"email": "emily@partner.com"
}
]
}
}{
"event": "meeting_booked",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"source_type": "group_meeting_link",
"source_id": 202,
"source_slug": "sales-engineering-demo",
"booking": {
"id": 2001,
"uuid": "book-pqr678-stu901",
"title": "Sales + Engineering Demo",
"start_time": "2024-01-28T16:00:00Z",
"end_time": "2024-01-28T17:00:00Z",
"status": "scheduled",
"meeting_url": "https://teams.microsoft.com/l/meetup-join/...",
"time_zone": "America/Chicago",
"notes": "Technical deep-dive requested"
},
"assignee": {
"id": 3,
"email": "mike@yourcompany.com",
"first_name": "Mike",
"last_name": "Wilson"
},
"attendees": [
{
"name": "David Brown",
"email": "david@enterprise.com"
}
]
}
}{
"event": "meeting_cancelled",
"timestamp": "2024-01-18T11:00:00Z",
"data": {
"booking": {
"status": "cancelled"
}
}
}{
"event": "meeting_no_show",
"timestamp": "2024-01-18T11:00:00Z",
"data": {
"booking": {
"status": "no_show"
}
}
}{
"form_data": {
"_truncated": true,
"_original_size": 150000,
"_message": "Form data exceeded 100KB and was truncated"
}
}