Deletes all key-value cache items belonging to an app

DELETE /apps/{app-slug}/cache-items

Deletes all key-value cache items created by the builds of an app. Deleted cache items are no longer accessible and cannot be restored.

Path parameters

  • app-slug string Required

    App slug

Responses

  • 200

    OK

  • 400

    Bad Request

    Hide response attribute Show response attribute object
    • message string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • message string
  • 404

    Not Found

    Hide response attribute Show response attribute object
    • message string
  • 500

    Internal Server Error

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