List Multisource Metadata
POST
https://api.lootlocker.io/server/metadata/multisource
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.lootlocker.io/server/metadata/multisource' \
--header 'x-auth-token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"sources": [
{
"source": "leaderboard",
"id": "01J8030AMYTZN4ZQ4WBT3V8XGP",
"keys": [
"has_beta_access",
"preferred_nickname"
]
},
{
"source": "catalog_item",
"id": "01J7S0CED5K0THCB1ENN9XKQWZ",
"keys": [
"has_beta_access"
]
}
]
}'
Response Response Example
{
"metadata": [
{
"source": "leaderboard",
"entries": [
{
"access": [
"game_api.read"
],
"key": "has_beta_access",
"tags": [],
"type": "bool",
"value": true
},
{
"access": [
"game_api.read",
"game_api.write"
],
"key": "preferred_nickname",
"tags": [
"foo"
],
"type": "string",
"value": "xXx_ProGamer9000_xXx"
}
],
"source_id": "01J8030AMYTZN4ZQ4WBT3V8XGP"
},
{
"source": "catalog_item",
"entries": [
{
"access": [
"game_api.read"
],
"key": "has_beta_access",
"tags": [],
"type": "bool",
"value": true
}
],
"source_id": "01J7S0CED5K0THCB1ENN9XKQWZ"
}
]
}
Request
Header Params
x-auth-token
stringÂ
required
Default:
{{server_auth_token}}
Body Params application/json
Responses
Modified at 2025-04-17 08:51:32