Events
Bookable events
Bookable Event Cancelled

Bookable event cancelled

Is triggered when bookable event was cancelled.

Provide the data to Segment tracker.

Data structure:

type BookableEvent = {
  id: string;
  createdAt: string;
  updatedAt: string;
  startTime: string;
  endTime: string;
  capacity: number;
  customerPartySize: number;
  details?: string;
  imageUrl?: string;
  name?: string;
  customer: {
    id: string;
    phoneNumber: string;
    name: string;
    email: string;
  }
  service: {
    name: string;
    imageUrl?: string;
    durationMinutes: number;
    price: number;
  }
  location: {
    id: string;
    address: string;
    city: string;
    name: string;
    zipCode: string;
    areaId: string;
    areaName: string;
    imageUrl: string;
  }
  customFields: Record<string, string>;
}