Get the bitrise.yml of a build

GET /apps/{app-slug}/builds/{build-slug}/bitrise.yml

Get the bitrise.yml file of one of the builds of a given app. This will return the bitrise.yml configuration with which the build ran. You can compare it to the current bitrise.yml configuration of the app.

Path parameters

  • app-slug string Required

    App slug

  • build-slug string Required

    Build slug

Responses

  • 200

    {the bitrise.yml in yml format}

  • 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
GET /apps/{app-slug}/builds/{build-slug}/bitrise.yml
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/builds/{build-slug}/bitrise.yml' \
 --header "Authorization: $API_KEY"
Response examples (200)
string
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}