Get a list of the android keystore files
List all the android keystore files that have been uploaded to a specific app.
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/android-keystore-files
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/android-keystore-files' \
--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"
}
],
"paging": {
"next": "string",
"page_item_limit": 42,
"total_item_count": 42
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}