Updates the app's notification settings

PATCH /apps/{app-slug}/update-email-notifications

Updates the app's email notification settings with parameters

Path parameters

Body Required

App notification settings parameters

  • When should Bitrise send notifications for the users on build failure? Possible values: always, never, change

  • When should Bitrise send notifications for the users on build success? Possible values: always, never, change

Responses

  • OK

    Hide response attribute Show response attribute object
  • 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
PATCH /apps/{app-slug}/update-email-notifications
curl \
 --request PATCH 'https://api.bitrise.io/v0.1/apps/{app-slug}/update-email-notifications' \
 --header "Authorization: $API_KEY" \
 --data '{"on_failure":"string","on_success":"string"}'
Request examples
{
  "on_failure": "string",
  "on_success": "string"
}
Response examples (200)
{
  "msg": "string"
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}