Webhook that is used for getting notifications when monitored events occur.

Export

Webhook

interface Webhook {
    created_at?: string;
    event_filters?: WebhookEventFilter[];
    event_type?: WebhookEventType;
    event_type_filter?: WebhookEventTypeFilter;
    id?: string;
    network_id?: string;
    notification_uri?: string;
    signature_header?: string;
    status: WebhookStatus;
    updated_at?: string;
}

Properties

created_at?: string

The date and time the webhook was created.

Memberof

Webhook

event_filters?: WebhookEventFilter[]

Webhook will monitor all events that matches any one of the event filters.

Memberof

Webhook

event_type?: WebhookEventType

Memberof

Webhook

event_type_filter?: WebhookEventTypeFilter

Memberof

Webhook

id?: string

Identifier of the webhook.

Memberof

Webhook

network_id?: string

The ID of the blockchain network

Memberof

Webhook

notification_uri?: string

The URL to which the notifications will be sent.

Memberof

Webhook

signature_header?: string

The header that will contain the signature of the webhook payload.

Memberof

Webhook

Memberof

Webhook

updated_at?: string

The date and time the webhook was last updated.

Memberof

Webhook