Retrieve a paginated list of existing projects for application
Successful Response
const response = await fetch('/api/v2/{app_id}/projects/', { method: 'GET', headers: {}, }); const data = await response.json();
{ "results": [ { "name": "text", "description": "text", "public": false, "area_of_interest": { "geometry": { "type": "text", "coordinates": [ 0 ] }, "id": "text", "bbox": [] } } ] }