Interface BlogListParams

Parameters for listing blogs

interface BlogListParams {
    created_on_max?: string;
    created_on_min?: string;
    fields?: string[];
    handle?: string;
    limit?: number;
    page?: number;
    updated_on_max?: string;
    updated_on_min?: string;
}

Hierarchy (view full)

Properties

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

handle?: string

Filter by handle

limit?: number

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

page?: number

Page number (1-based).

updated_on_max?: string

Filter by update date range end

updated_on_min?: string

Filter by update date range start