list_bookmarks
Return a paginated list of bookmarks.
def list_bookmarks(
page: integer = 1,
per_page: integer = 25,
status: string = None
) - > object
Returns a paginated list of bookmarks, optionally filtered by status.
Parameters
| Name | Type | Description |
|---|---|---|
| page | integer = 1 | The page number for pagination, starting from 1. |
| per_page | integer = 25 | The number of items to return per page, with a maximum of 100. |
| status | string = None | Filters the bookmarks by their status. Valid options are 'active', 'archived', or 'trashed'. |
Returns
| Type | Description |
|---|---|
object | A JSON object containing a list of bookmarks and the total count. |