Sent when a background response has failed.

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

Properties

created_at: number

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

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "response.failed"

The type of the event. Always response.failed.