curl --request PUT \
--url https://api.getcargo.io/v1/billing/subscription/creditsOverageBehaviors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"creditsOverageBehaviors": [
{
"unit": "billing.credits",
"action": "deny"
}
]
}
'{}Update the credits overage behaviors settings
curl --request PUT \
--url https://api.getcargo.io/v1/billing/subscription/creditsOverageBehaviors \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"creditsOverageBehaviors": [
{
"unit": "billing.credits",
"action": "deny"
}
]
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body schema.
Credits overage behavior configuration.
Show child attributes
Successful response
The response is of type object.
Was this page helpful?