Was this helpful?
Retrieve existing project
/{app_id}/projects/{project_id}
curl -L \ --url '/api/v2/{app_id}/projects/{project_id}'
{ "description": "Project description", "id": 123, "name": "Project name", "area_of_interest": { "properties": { "radius": 0.133 }, "geometry": { "type": "Point", "coordinates": [ -78.84779139647071, -4.0988921451725275 ] } } }
Update existing project
Project name
Project description
Project publication setting
curl -L \ --request PUT \ --url '/api/v2/{app_id}/projects/{project_id}' \ --header 'Content-Type: application/json' \ --data '{ "description": "Project description", "name": "Project name" }'
Delete existing project
curl -L \ --request DELETE \ --url '/api/v2/{app_id}/projects/{project_id}'
No body