Upload a new bitrise.yml for your application.

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

Upload a new bitrise.yml for your application.

Path parameters

Body Required

App config parameters

  • The bitrise.yml of your application, defined in JSON format

    Additional properties are allowed.

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • Bad Request

    Hide response attribute Show response attribute object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Not Found

    Hide response attribute Show response attribute object
  • Internal Server Error

    Hide response attribute Show response attribute object
POST /apps/{app-slug}/bitrise.yml
curl \
 --request POST 'https://api.bitrise.io/v0.1/apps/{app-slug}/bitrise.yml' \
 --header "Authorization: $API_KEY" \
 --data '{"app_config_datastore_yaml":{}}'
Request examples
{
  "app_config_datastore_yaml": {}
}
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "error_msg": "string"
}