Sent when a batch API request has been cancelled.

interface BatchCancelledWebhookEvent {
    created_at: number;
    data: OpenAIClient.Webhooks.BatchCancelledWebhookEvent.Data;
    id: string;
    object?: "event";
    type: "batch.cancelled";
}

Properties

created_at: number

The Unix timestamp (in seconds) of when the batch API request was cancelled.

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "batch.cancelled"

The type of the event. Always batch.cancelled.