Billing
Last modified:2025-11-29 22:06:11
OperationId:getBalance
Get current account balance(unpaid invoices total), account credit
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Responses
{
{
"success": true,
"details": {
"currency": "USD",
"acc_balance": "123456.55",
"acc_credit": "0.00"
}
}
}
This response does not have a body.
curl --location --request GET 'https://my.hitechcloud.vn/api/balance' \
--header 'Authorization: Bearer <token>'
Modified at 2025-11-29 22:06:11