Sent when a background response has been completed.

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

Properties

created_at: number

The Unix timestamp (in seconds) of when the model response was completed.

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "response.completed"

The type of the event. Always response.completed.