Sent when a fine-tuning job has been cancelled.

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

Properties

created_at: number

The Unix timestamp (in seconds) of when the fine-tuning job was cancelled.

Event data payload.

id: string

The unique ID of the event.

object?: "event"

The object of the event. Always event.

type: "fine_tuning.job.cancelled"

The type of the event. Always fine_tuning.job.cancelled.