Get a specific build certificate

GET /apps/{app-slug}/build-certificates/{build-certificate-slug}

Retrieve data of a specific build certificate. You can fetch the build certificate slug for this endpoint if you first call the GET /apps/{app-slug}/build-certificates endpoint to list all available build certificates of an app. Read more in our Getting a specific iOS code signing file's data guide.

Path parameters

Responses

GET /apps/{app-slug}/build-certificates/{build-certificate-slug}
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/build-certificates/{build-certificate-slug}' \
 --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"
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}