pl-api
    Preparing search index...

    Interface GetBookmarksParams

    interface GetBookmarksParams {
        folder_id?: string;
        limit?: number;
        max_id?: string;
        min_id?: string;
        since_id?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    folder_id?: string

    Bookmark folder ID Requires features['bookmarkFolders'].

    limit?: number

    Integer. Maximum number of results to return.

    max_id?: string

    String. All results returned will be lesser than this ID. In effect, sets an upper bound on results.

    min_id?: string

    String. Returns results immediately newer than this ID. In effect, sets a cursor at this ID and paginates forward.

    since_id?: string

    String. All results returned will be greater than this ID. In effect, sets a lower bound on results.