DELETE /projects/{project}
Endpoint
Section titled “Endpoint”DELETE /api/v1/projects/{project}Description
Section titled “Description”Archives the project first and then removes it from active storage.
Path Parameters
Section titled “Path Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
project | string | Yes | Project name |
Example Request
Section titled “Example Request”curl -X DELETE http://localhost/api/v1/projects/status-page \ -H "X-Uplinkr-Api-Key: replace-me-with-a-long-random-key"Example Response
Section titled “Example Response”{ "data": { "project": "status-page", "deleted": true, "archived": true }, "meta": { "message": "Project deleted successfully." }}Status Codes
Section titled “Status Codes”200Project archived and deleted401Missing or invalid API key404Project not found500Archive or delete failed