Sent when a batch API request has expired.

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

Properties

created_at: number

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

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "batch.expired"

The type of the event. Always batch.expired.