Confirm a build certificate upload

POST /apps/{app-slug}/build-certificates/{build-certificate-slug}/uploaded

This is the last step of uploading a build certificate to Bitrise. Confirm the build certificate upload and view the file on the Code Signing tab of a specific app. Read more in our Confirming the iOS code signing file upload guide.

Path parameters

Responses

POST /apps/{app-slug}/build-certificates/{build-certificate-slug}/uploaded
curl \
 --request POST 'https://api.bitrise.io/v0.1/apps/{app-slug}/build-certificates/{build-certificate-slug}/uploaded' \
 --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"
  }
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}