Get a list of the build certificates

GET /apps/{app-slug}/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

Query parameters

  • next string

    Slug of the first build certificate in the response

  • limit integer

    Max number of build certificates per page is 50.

    Maximum value is 50.

Responses

  • OK

    Hide response attributes Show response attributes object
  • Bad Request

    Hide response attribute Show response attribute object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Not Found

    Hide response attribute Show response attribute object
  • Internal Server Error

    Hide response attribute Show response attribute object
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"
}