interface WebhookEvent {
    createdAt?: Date;
    data: string;
    domainId: string;
    emailId?: string;
    id: string;
    organizationId: string;
    projectId: string;
    status: WebhookEventStatus;
    type: WebhookEventType;
    updatedAt?: Date;
    webhookId: string;
}

Properties

createdAt?: Date

Date and time of the Webhook Event creation.

data: string

Data sent to the Webhook destination.

domainId: string

ID of the webhook event domain.

emailId?: string

Optional Email ID if the event is triggered by an Email resource.

id: string

ID of the Webhook Event.

organizationId: string

ID of the Webhook Event Organization.

projectId: string

ID of the Webhook Event Project.

Status of the Webhook Event.

Type of the Webhook Event.

updatedAt?: Date

Date and time of last Webhook Event updates.

webhookId: string

ID of the Webhook that triggers the Event.