Skip to content

Configure overage (burst scaling)

POST
/billing/overage
curl --request POST \
--url https://api.reflexdb.cloud/v1/billing/overage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "enabled": true, "spendingCapCents": 1 }'

Enable or disable burst-scaling overage for the account. Requires Teams plan or above and at least one successful renewal payment. When enabling, a spendingCapCents value is required and must not exceed the tier maximum.

Media type application/json
object
enabled
required
boolean
spendingCapCents
integer
>= 1
Example generated
{
"enabled": true,
"spendingCapCents": 1
}

Default Response

Media type application/json
object
ok
required
boolean
overageEnabled
required
boolean
spendingCapCents
integer
nullable
Example generated
{
"ok": true,
"overageEnabled": true,
"spendingCapCents": 1
}

Default Response

Media type application/json
Error
object
error
required
string
message
string
Example generated
{
"error": "example",
"message": "example"
}

Default Response

Media type application/json
Error
object
error
required
string
message
string
Example generated
{
"error": "example",
"message": "example"
}