Delete a provisioning profile

DELETE /apps/{app-slug}/provisioning-profiles/{provisioning-profile-slug}

Delete an app's provisioning profile. You can fetch the provisioning profile's slug if you call the GET /apps/{app-slug}/provisioning-profiles endpoint. Read more in our Deleting an iOS code signing file guide.

Path parameters

  • app-slug string Required

    App slug

  • provisioning-profile-slug string Required

    Provisioning profile slug

Responses

  • 200

    OK

    Hide response attribute Show response attribute object
    • data object

      Additional properties are allowed.

      Hide data attributes Show data attributes object
      • download_url string
      • is_expose boolean
      • is_protected boolean
      • processed boolean
      • slug string
      • upload_file_name string
      • upload_file_size integer
      • upload_url string
  • 400

    Bad Request

    Hide response attribute Show response attribute object
    • message string
  • 401

    Unauthorized

    Hide response attribute Show response attribute object
    • message string
  • 404

    Not Found

    Hide response attribute Show response attribute object
    • message string
  • 500

    Internal Server Error

    Hide response attribute Show response attribute object
    • message string
DELETE /apps/{app-slug}/provisioning-profiles/{provisioning-profile-slug}
curl \
 --request DELETE 'https://api.bitrise.io/v0.1/apps/{app-slug}/provisioning-profiles/{provisioning-profile-slug}' \
 --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"
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}