interface Webhook {
    callback: {
        headers: any;
        url: string;
    };
    webhook_id: string;
}

Properties

Properties

callback: {
    headers: any;
    url: string;
}

Type declaration

  • headers: any

    Headers to include in the webhook call.

  • url: string

    The callback url that will be called when job execution completes.

webhook_id: string

The identifier for the webhook.