Get a list of the provisioning profiles

GET /apps/{app-slug}/provisioning-profiles

List all the provisioning profiles 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 provisioning profile in the response

  • limit integer

    Max number of elements per page (default: 50)

    Maximum value is 50.

Responses

  • OK

    Hide response attributes Show response attributes object
    • data array[object]
      Hide data attributes Show data attributes object
    • paging object

      pagination

      Additional properties are allowed.

      Hide paging attributes Show paging attributes object
      • next string

        Next is the "anchor" for pagination. This value should be passed to the same endpoint to get the next page. Empty/not included if there's no "next" page. Stop paging when there's no "Next" item in the response!

      • PageItemLimit - per-page item count. A given page might include less items if there's not enough items. This value is the "max item count per page".

      • TotalItemCount - total item count, through "all pages"

  • 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}/provisioning-profiles
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/provisioning-profiles' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": [
    {
      "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"
}