Updates an app

PATCH /apps/{app-slug}

Updates an app by slug. Only updates the fields specified in the body.

Path parameters

Body Required

App update params. All fields are optional, omit the fields you don't wish to update.

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}
curl \
 --request PATCH 'https://api.bitrise.io/v0.1/apps/{app-slug}' \
 --header "Authorization: $API_KEY" \
 --data '{"apple_credential_user_id":42,"apple_credential_user_slug":"string","default_branch":"string","is_public":true,"repository_url":"string","services_credential_user_id":42,"title":"string"}'
Request examples
{
  "apple_credential_user_id": 42,
  "apple_credential_user_slug": "string",
  "default_branch": "string",
  "is_public": true,
  "repository_url": "string",
  "services_credential_user_id": 42,
  "title": "string"
}
Response examples (200)
{
  "status": "string"
}
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}