cURL
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 } } ] }
Retrieves current balances for multiple users.
Bearer authentication using an access token. Format: Bearer <access_token>
AdminGetUsersBalanceRequest is the request for user balances.
The unique ID of the operator user.
The unique IDs of the target users.
A successful response.
AdminGetUsersBalanceResponse is the response for user balances.
The users' current balances.
Show child attributes