Delete an android keystore file
Delete an app's android keystore file. You can fetch an app's android keystore file slug if you first list all the uploaded files with the GET /apps/{app-slug}/android-keystore-files endpoint. Read more in our Deleting a file guide.
Path parameters
-
app-slug
string Required App slug
-
android-keystore-file-slug
string Required Android keystore file slug
DELETE
/apps/{app-slug}/android-keystore-files/{android-keystore-file-slug}
curl \
--request DELETE 'https://api.bitrise.io/v0.1/apps/{app-slug}/android-keystore-files/{android-keystore-file-slug}' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": {
"exposed_meta_datastore": {},
"is_expose": true,
"is_protected": true,
"processed": true,
"slug": "string",
"upload_file_name": "string",
"upload_file_size": 42,
"user_env_key": "string"
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}