TypeScript
const options = {method: 'GET'}; fetch('https://api.example.com/v1/regions/global/projects', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "success": true, "data": [ { "id": "<string>", "name": "<string>", "slug": "<string>", "organizationId": "<string>", "description": "<string>", "metadata": {}, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ], "meta": { "total": 123, "limit": 123, "offset": 123 } }
List all projects accessible to the authenticated user. Organization context is derived from the auth token.
Filter by organization
Maximum number of results
Number of results to skip
List of projects
true
Show child attributes
Was this page helpful?