Get bitrise.yml of a specific app

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

Get the full bitrise.yml configuration of an application, by providing the app slug. It returns the current bitrise.yml that is stored on bitrise.io in full, including the trigger map, the different workflows and the Steps.

Path parameters

  • app-slug string Required

    App 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}/bitrise.yml
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-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"
}