Type Alias AutomationConnectorWebhookEvent

type AutomationConnectorWebhookEvent = {
    description?: string | null;
    exampleOutput?:
        | unknown
        | (unknown | string | number | boolean)[]
        | string
        | null;
    id?: string;
    name?: string;
    params?: AutomationConnectorWebhookEventParam[];
    role?: string;
}
Index
description?: string | null

The description of the webhook event.

exampleOutput?:
    | unknown
    | (unknown | string | number | boolean)[]
    | string
    | null

An example of the payload this event produces.

id?: string

The unique identifier of the webhook event.

name?: string

The name of the webhook event.

The parameters available for this webhook event.

role?: string

The role of the webhook event.