This payload is sent for an EventSubscription.

interface EventDeliveryPayload {
    createdAt: string;
    data: any;
    id: string;
    notificationType: "Event";
    resourceType: string;
    type: EventType;
}

Hierarchy (View Summary)

Properties

createdAt: string

Date and time (UTC) the resource was initially created.

data: any

The data describing the event that has taken place.

id: string

Unique identifier of the Event.

notificationType: "Event"

Identifies the payload.

resourceType: string

The type of resource targeted by the Event.

type: EventType

The type of Event that has occurred.