TypeScript
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>" } }
Soft-delete a project (sets deletedAt timestamp). Requires project admin role.
Project deleted successfully
Was this page helpful?