List all projects for the current user
Optional
Pagination and filter options (page, limit, search)
Paginated list of projects
401 - Not authenticated
import { listProjects } from "@cpod/sdk";const response = await listProjects({ page: 1, limit: 10 });console.log(`Found ${response.total} projects`);response.projects.forEach(project => { console.log(`${project.name} - ${project.description}`);}); Copy
import { listProjects } from "@cpod/sdk";const response = await listProjects({ page: 1, limit: 10 });console.log(`Found ${response.total} projects`);response.projects.forEach(project => { console.log(`${project.name} - ${project.description}`);});
List all projects for the current user