Skip to main content
DELETE
/
v1
/
arc
/
projects
/
:id
Delete project
const options = {method: 'DELETE'};

fetch('http://localhost:4005/v1/arc/projects/:id', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "success": false,
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": {}
  },
  "meta": {
    "requestId": "<string>",
    "timestamp": "<string>"
  }
}

Path Parameters

id
string
required

Response

Project deleted successfully