curl --request POST \
--url https://api.tensormesh.ai/v1/admin/billing/balances \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"targetUserIds": [
"<string>"
]
}
'{
"balances": [
{
"userId": "<string>",
"balance": {
"currencyCode": "<string>",
"units": "<string>",
"nanos": 123
}
}
]
}Admin-only balance and spending summary operations.
curl --request POST \
--url https://api.tensormesh.ai/v1/admin/billing/balances \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"userId": "<string>",
"targetUserIds": [
"<string>"
]
}
'{
"balances": [
{
"userId": "<string>",
"balance": {
"currencyCode": "<string>",
"units": "<string>",
"nanos": 123
}
}
]
}Use this group for admin billing workflows. Common operations:Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
A successful response.
AdminGetUsersBalanceResponse is the response for user balances.
The users' current balances.
Show child attributes
Was this page helpful?