- Auth
- API Keys
- Collectables
- Heroes and Characters
- Game
- Asset Candidates
- Assets
- Bones
- Players
- Leaderboards
- Files
- Feature Toggles
- Universal Player Auth
- Merging
- Rarities
- Preferences
- Platforms
- Progressions
- User
- Organisation
- Link Types
- Events/Missions
- Maps
- White Label Login
- Rewards
- Moderation Reports
- Catalogs
- Currency
- Balances
- Messages
- DLC
- Player Segments
- Character Classes
- Subscriptions
- Player Operations
- Roles
- Title Config
- Items
- Entitlements
- Feedback
- Hosts
- Metadata
- Triggers
- Data Migration
- Twitch Drops
- Notifications
List Balances
GET
/admin/game/{game_id}/balances/wallet/{wallet_id}
balances
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.lootlocker.io/admin/game//balances/wallet/01J0RBX47V35QKHEBNA0ZD2E31' \
--header 'Content-Type: application/json' \
--header 'x-auth-token;' \
--data-raw '{}'
Response Response Example
200 - List Balances - Success
{
"balances": [
{
"created_at": "2023-05-10T09:27:00Z",
"amount": "4184768942",
"holder_type": "player",
"currency": {
"code": "woo",
"name": "Wood",
"id": "01H00MTAPTE4VRPRZJZMT5RTBH"
},
"holder_id": 2422917
}
]
}
Request
Authorization
API Key
Add parameter in header
x-auth-token
Example:
x-auth-token: ********************
Path Params
game_id
string
required
Example:
{{dev_game_id}}
wallet_id
string
required
Example:
01J0RBX47V35QKHEBNA0ZD2E31
Header Params
x-auth-token
string
required
Example:
{{admin_auth_token}}
Body Params application/json
object {0}
Examples
Responses
🟢200List Balances - Success
application/json
Body
balances
array [object {5}]
required
created_at
string
optional
amount
string
optional
holder_type
string
optional
currency
object
optional
holder_id
integer
optional
🟠404List Balances - Player doesn't exist
🟠404List Balances - No Balances Found
Modified at 2024-06-19 13:47:56