Protected
accessProtected
baseProtected
Optional
OnProtected
Optional
rateCreates a new project with the specified parameters.
The parameters for creating a project. See ProjectParams.
A promise that resolves to a FetchResponse containing the newly created Project.
Deletes an existing project by its ID.
The unique identifier of the project to delete.
A promise that resolves to a FetchResponse indicating the deletion result.
Fetches a paginated list of projects.
The page number to retrieve. Defaults to 1
.
The number of projects per page. Defaults to 30
.
A promise that resolves to a FetchResponse containing an array of Project objects.
Updates an existing project by its ID with the specified parameters.
The unique identifier of the project to update.
The parameters for updating the project. See ProjectParams.
A promise that resolves to a FetchResponse containing the updated Project.
Provides methods for managing projects via the API.
Remarks
This class extends ApiClient to interact with project-related endpoints, including listing, creating, updating, and deleting projects.
Example