Was this helpful?
Delete existing project
DELETE /api/v2/{app_id}/projects/{project_id} HTTP/1.1 Host: Accept: */*
Successful Response
No content
Retrieve existing project
{"area_of_interest":{"geometry":{"coordinates":[-78.84779139647071,-4.0988921451725275],"type":"Point"},"properties":{"radius":0.133}},"description":"Project description","id":123,"name":"Project name"}
GET /api/v2/{app_id}/projects/{project_id} HTTP/1.1 Host: Accept: */*
{ "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
PUT /api/v2/{app_id}/projects/{project_id} HTTP/1.1 Host: Content-Type: application/json Accept: */* Content-Length: 59 { "description": "Project description", "name": "Project name" }