Skip to main content
DELETE
/
api
/
orgs
/
{id}
/
projects
/
{projectId}
Permanently delete project
curl --request DELETE \
  --url https://atollhq.com/api/orgs/{id}/projects/{projectId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "confirmation": "DELETE"
}
'
{
  "project": {
    "id": "project-uuid",
    "name": "Launch",
    "slug": "launch"
  },
  "deletedIssueCount": 12
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

id identifier

projectId
string
required

projectId identifier

Body

application/json
confirmation
enum<string>
required

Must be exactly DELETE.

Available options:
DELETE

Response

Project and project tasks deleted

project
object
required
deletedIssueCount
integer
required
Required range: x >= 0