Method
listProjectsDashboard POST
Copy POST

Retrieves a list of projects for dashboard display with filtering and pagination support.

Arguments:

REQUIRED KEY TYPE DESCRIPTION
No updatedFilter int Unix timestamp to filter projects updated after this time.
No limit int The maximum number of projects to return (default: 50).
No sinceProjectId str The ID of the project after which the list starts for pagination.
No search str Search term to filter projects by name, creator email, or use case.
No starred bool Filter by starred status (True for starred, False for non-starred).
No tag str Filter by a single tag (deprecated, use tags instead).
No tags list List of tags to filter projects by.
Note: The arguments for the API methods follow camelCase but for Python SDK underscore_case is followed.

Response:

KEY TYPE DESCRIPTION
success Boolean true if the call succeeded, false if there was an error
type
description

Exceptions:

TYPE WHEN
DataNotFoundError `sinceProjectId` is not found.
Language: