action digitalocean_balance_get { label: "Get Customer Balance" description: "To retrieve the balances on a customer's account, send a GET request to `/v2/customers/my/balance`." provider: digitalocean method: GET path: "/v2/customers/my/balance" encoding: json output: { type: "object" properties: { account_balance: { type: "string" description: "Current balance of the customer's most recent billing activity. Does not reflect `month_to_date_usage`." } generated_at: { type: "string" format: "date-time" description: "The time at which balances were most recently generated." } month_to_date_balance: { type: "string" description: "Balance as of the `generated_at` time. This value includes the `account_balance` and `month_to_date_usage`." } month_to_date_usage: { type: "string" description: "Amount used in the current billing period as of the `generated_at` time." } } } }