Was this helpful?
Delete existing project
curl -L \ --request DELETE \ --url '/api/v2/{app_id}/projects/{project_id}'
No body
Retrieve existing project
curl -L \ --url '/api/v2/{app_id}/projects/{project_id}'
{ "area_of_interest": { "geometry": { "coordinates": [ -78.84779139647071, -4.0988921451725275 ], "type": "Point" }, "properties": { "radius": 0.133 } }, "description": "Project description", "id": 123, "name": "Project name" }
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" }'