Skip to content

DELETE /projects/{project}

DELETE /api/v1/projects/{project}

Archives the project first and then removes it from active storage.

ParameterTypeRequiredDescription
projectstringYesProject name
Terminal window
curl -X DELETE http://localhost/api/v1/projects/status-page \
-H "X-Uplinkr-Api-Key: replace-me-with-a-long-random-key"
{
"data": {
"project": "status-page",
"deleted": true,
"archived": true
},
"meta": {
"message": "Project deleted successfully."
}
}
  • 200 Project archived and deleted
  • 401 Missing or invalid API key
  • 404 Project not found
  • 500 Archive or delete failed