Turn row overage on or off
POST
/billing/overage
const url = 'https://api.sloose.com/billing/overage';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"enabled":true}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.sloose.com/billing/overage \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "enabled": true }'With overage off, a run that would exceed the monthly allowance is refused outright. With it on, the rows are written and billed per thousand. Only offered on plans that price it.
Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
enabled
boolean | null
key
additional properties
Examplegenerated
{ "enabled": true}Responses
Section titled “Responses”The new state.
Media typeapplication/json
object
overageEnabled
required
boolean
overageAllowed
required
Plan offers it AND the org switched it on.
boolean
Examplegenerated
{ "overageEnabled": true, "overageAllowed": true}enabled is not a boolean.
Media typeapplication/json
object
error
required
string
key
additional properties
Examplegenerated
{ "error": "example"}No bearer, or one that is expired, revoked or no longer resolves to a member.
Media typeapplication/json
The error envelope every non-2xx answer uses.
object
error
required
Human-readable explanation.
string
code
Machine-readable reason. Absent on a few legacy 400s.
string
key
additional properties
Examplegenerated
{ "error": "example", "code": "example"}The bearer’s role is too low, or it was issued for a different org.
Media typeapplication/json
The error envelope every non-2xx answer uses.
object
error
required
Human-readable explanation.
string
code
Machine-readable reason. Absent on a few legacy 400s.
string
key
additional properties
Examplegenerated
{ "error": "example", "code": "example"}This org is a sandbox. Billing is managed on its production org.
Media typeapplication/json
object
error
required
string
code
required
string
key
additional properties
Example
{ "code": "SANDBOX_ORG"}