Export

CreateWebhookRequest

interface CreateWebhookRequest {
    event_filters?: WebhookEventFilter[];
    event_type: WebhookEventType;
    event_type_filter?: WebhookEventTypeFilter;
    network_id: string;
    notification_uri: string;
    signature_header?: string;
}

Properties

event_filters?: WebhookEventFilter[]

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

Memberof

CreateWebhookRequest

event_type: WebhookEventType

Memberof

CreateWebhookRequest

event_type_filter?: WebhookEventTypeFilter

Memberof

CreateWebhookRequest

network_id: string

The ID of the blockchain network

Memberof

CreateWebhookRequest

notification_uri: string

The URL to which the notifications will be sent

Memberof

CreateWebhookRequest

signature_header?: string

The custom header to be used for x-webhook-signature header on callbacks, so developers can verify the requests are coming from Coinbase.

Memberof

CreateWebhookRequest