Deletes an app

DELETE /apps/{app-slug}

Deletes an app by slug. Use with care, make sure you really want to delete the app. This action cannot be undone.

Path parameters

Responses

  • OK

    Hide response attribute Show response attribute object
  • Bad Request

    Hide response attribute Show response attribute object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Not Found

    Hide response attribute Show response attribute object
  • Internal Server Error

    Hide response attribute Show response attribute object
DELETE /apps/{app-slug}
curl \
 --request DELETE 'https://api.bitrise.io/v0.1/apps/{app-slug}' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "msg": "string"
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}