Skip to main content
PUT
/
apps
/
{appId}
/
autoscaling
Update Application Autoscaling
curl --request PUT \
  --url https://api.bunny.net/mc/apps/{appId}/autoscaling \
  --header 'AccessKey: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "min": 1,
  "max": 10
}
'
{
  "title": "<string>",
  "status": 123,
  "detail": "<string>",
  "instance": "<string>",
  "errors": [
    {
      "field": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

AccessKey
string
header
required

Please enter a valid personal API key.

Path Parameters

appId
string
required

The ID of the application

Body

Autoscaling settings to update

min
integer<int32>
required
Required range: 1 <= x <= 1000
Example:

1

max
integer<int32>
required
Required range: 1 <= x <= 1000
Example:

10

Response

Autoscaling settings updated successfully.