Sent when a batch API request has been completed.

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

Properties

created_at: number

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

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "batch.completed"

The type of the event. Always batch.completed.