Get a list of the build certificates
List all the build certificates that have been uploaded to a specific app. Read more in our Listing the uploaded iOS code signing files of an app guide.
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/build-certificates
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/build-certificates' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"certificate_password": "string",
"download_url": "string",
"is_expose": true,
"is_protected": true,
"processed": true,
"slug": "string",
"upload_file_name": "string",
"upload_file_size": 42,
"upload_url": "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"
}