Interface WebhookListParams

Parameters for listing webhooks

interface WebhookListParams {
    address?: string;
    created_on_max?: string;
    created_on_min?: string;
    fields?: string[];
    limit?: number;
    page?: number;
    topic?: WebhookTopic;
    updated_on_max?: string;
    updated_on_min?: string;
}

Hierarchy (view full)

Properties

address?: string

Filter by address

created_on_max?: string

Filter by creation date range end

created_on_min?: string

Filter by creation date range start

fields?: string[]

Fields to include in response

limit?: number

Number of items per page. Maximum value varies by endpoint.

page?: number

Page number (1-based).

topic?: WebhookTopic

Filter by topic

updated_on_max?: string

Filter by update date range end

updated_on_min?: string

Filter by update date range start