Events/Atelier
calendar.event_addedBuyer-initiated

Calendar event added

A buyer added an occasion (wedding, owambe, naming, work event) to their personal Atelier calendar.

When this fires

Fires whenever the underlying state change happens on the platform.

High frequency
This event is buyer-initiated, which means it can fire at checkout-traffic volume during busy periods. Make sure your handler responds in under ten seconds; queue any heavy work.

Sample payload

This is the exact envelope shape we POST to your endpoint — outer wrapper plus the per-event data payload. Field values are randomised on each render so you see the general shape, not a fixed example.

json
{
  "id": "51ba9691-9be3-4382-aed1-c6a0eca3ce93",
  "event": "calendar.event_added",
  "created": "2026-06-12T15:00:35.970Z",
  "data": {
    "eventId": "c35f0f1m719o0000000000000",
    "buyerProfileId": "cg2x1rg454no0000000000000",
    "title": "Folake's traditional wedding",
    "occasionKind": "date",
    "occursAt": "2026-07-26T15:00:35.970Z",
    "dressCode": "black tie"
  }
}

Use cases

  • Trigger any downstream automation that cares about this state change.
  • Mirror the event into your data warehouse for analytics.
  • Notify a human channel for high-signal events.

Subscribe in the dashboard

To start receiving this event, add it to a webhook's subscription list in Developers → Webhooks. Wildcard subscriptions ( calendar.*) work too — see the webhooks guide for the matching rules.