- 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 Info
Developing
POST
/admin/game/{game_id}/player/info
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.lootlocker.io/admin/game//player/info' \
--header 'Content-Type: application/json' \
--header 'x-auth-token;' \
--data-raw '{
"player_id": ["01J7K1ZR8WEVYKTJ6MH4PH603C"],
"player_legacy_id": [2],
"player_public_uid": ["LM6YXGT2"]
}'
Response Response Example
{
"info": [
{
"id": "01J7ZJ501QH3Q40VBA5XGZMCBC",
"legacy_id": 2,
"public_uid": "9GR9YE3NR5KJ",
"name": "uipncwdztu",
"created_at": "2024-09-17T08:38:56Z"
},
{
"id": "01J7K1ZR8WEVYKTJ6MH4PH603C",
"legacy_id": 15,
"public_uid": "57XXGSMCCRMA",
"name": "fjykiwbdeh",
"created_at": "2024-09-17T08:38:56Z"
},
{
"id": "01J7ZJ501Q7VP1HMVC6CP0TDWF",
"legacy_id": 6,
"public_uid": "LM6YXGT2",
"name": "ksofivegfv",
"created_at": "2024-09-17T08:38:56Z"
}
]
}
Request
Authorization
API Key
Add parameter in header
x-auth-token
Example:
x-auth-token: ********************
Path Params
game_id
stringÂ
required
Header Params
x-auth-token
stringÂ
optional
Example:
{{admin_auth_token}}
Body Params application/json
player_id
array[string]
required
player_legacy_id
array[integer]
required
player_public_uid
array[string]
required
Examples
Responses
🟢200Success
application/json
Body
info
array [object {5}]Â
required
id
stringÂ
required
legacy_id
integerÂ
required
public_uid
stringÂ
required
name
stringÂ
required
created_at
stringÂ
required
Modified at 2024-09-18 13:32:32