# Get provisioning profiles for a tenant API to retrieve a list of iOS provisioning profiles with download URLs and pagination Endpoint: GET /v2/provisioning-profiles Version: 1.0.0 Security: apiKey ## Query parameters: - `limit` (number) Maximum number of provisioning profiles to return - `offset` (number) Number of provisioning profiles to skip - `app_identifier` (string) Filter by bundle identifier of the associated app - `profile_type` (string) Filter by profile type Enum: "development", "ad-hoc", "app-store", "enterprise" - `team_id` (string) Filter by Apple Developer Team identifier - `search` (string) Search in provisioning profile names and identifiers ## Response 200 fields (application/json): - `content` (object) - `content.count` (integer) Total number of provisioning profiles - `content.prev` (string) URL for previous page of results - `content.next` (string) URL for next page of results - `content.results` (array) - `content.results.id` (string) Unique identifier for the provisioning profile - `content.results.version_id` (string) Unique identifier for this specific version of the profile - `content.results.name` (string) Display name of the provisioning profile - `content.results.team_identifier` (string) Apple Developer Team identifier - `content.results.app_identifier` (string) Bundle identifier of the associated app - `content.results.profile_type` (string) Type of profile (development, distribution, etc.) Enum: "development", "ad-hoc", "app-store", "enterprise" - `content.results.expiration_date` (string) When the provisioning profile expires - `content.results.tenant_id` (string) Tenant that owns this provisioning profile - `content.results.created_at` (string) When the provisioning profile was first created - `content.results.updated_at` (string) When this version was last updated - `content.results.created_by` (string) User who created the provisioning profile - `content.results.updated_by` (string) User who created this version - `content.results.download_url` (string) Signed URL for downloading the provisioning profile file Example: "https://s3.amazonaws.com/bucket/provisioning-profiles/profile.mobileprovision?signature=abc123" ## Response 400 fields (application/json): - `code` (integer, required) - `message` (string, required) - `content` (object) ## Response 401 fields (application/json): - `code` (integer, required) - `message` (string, required) - `content` (object) ## Response 500 fields (application/json): - `code` (integer, required) - `message` (string, required) - `content` (object)