Get a list of the generic project files
List all the generic project files that have been uploaded to a specific app. Read more in our Listing the uploaded files of an app guide.
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/generic-project-files
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/generic-project-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"
}