Skip to content

Get provisioning profiles for a tenant

Request

API to retrieve a list of iOS provisioning profiles with download URLs and pagination

Security
apiKey
Query
limitnumber

Maximum number of provisioning profiles to return

Default:10
offsetnumber

Number of provisioning profiles to skip

Default:0
app_identifierstring

Filter by bundle identifier of the associated app

profile_typestring

Filter by profile type

Enum:"development""ad-hoc""app-store""enterprise"
team_idstring

Filter by Apple Developer Team identifier

searchstring

Search in provisioning profile names and identifiers

cURL
curl -i -X GET \
  'https://develop-api.esper.io/_mock/openapi/v2/provisioning-profiles?limit=10&offset=0&app_identifier=string&profile_type=development&team_id=string&search=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success

Bodyapplication/json
contentobject
Response
{ "content": { "count": 0, "prev": "string", "next": "string", "results": [] } }