Skip to main content

Revert billing usage

Revert billing usage for a billing account.

Path Parameters
    org_id string required

    either provide org_id or infer org from project_id

    billing_id string required

    either provide billing_id of the org or API can infer the default billing ID from either org_id or project_id, not both

    usage_id string required

    usage id to revert, a usage can only be allowed to revert once

Request Body required
    project_id string
    amount int64
Responses

A successful response.


Schema

    object

POST /v1beta1/admin/organizations/:org_id/billing/:billing_id/usage/:usage_id/revert

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
org_id — path required
billing_id — path required
usage_id — path required
Body required
{
"project_id": "string",
"amount": "string"
}
curl / cURL
curl -L -X POST 'http://127.0.0.1:7400/v1beta1/admin/organizations/:org_id/billing/:billing_id/usage/:usage_id/revert' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"project_id": "string",
"amount": "string"
}'