Get Asset Candidate
GET
https://api.lootlocker.com/game/v1/player/assets/candidates/{candidate_id}
ugc
Getting a single Asset Candidate
The response will be a single object, but otherwise identical to listing Asset Candidates.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.lootlocker.com/game/v1/player/assets/candidates/11' \
--header 'x-session-token: ' \
--header 'x-session-token;'
Response Response Example
{
"success": true,
"asset_candidate": {
"id": 15,
"asset_id": 6763,
"status": "APPROVED",
"review_feedback": null,
"data": {
"name": "Some UGC Asset",
"kv_storage": [
{
"key": "some-key",
"value": "some value"
}
],
"filters": [
{
"key": "some-filter",
"value": "some value"
}
],
"data_entities": [
{
"name": "Some Entity",
"data": "some data"
}
],
"context_id": 1740
},
"files": [],
"created_at": "Tue, 17 Nov 2020 12:56:58 +0000",
"updated_at": "Tue, 17 Nov 2020 12:58:25 +0000"
}
}
Request
Path Params
candidate_id
stringÂ
required
Example:
11
Header Params
x-session-token
stringÂ
required
Example:
{{session_token}}
Responses
Modified at 2024-09-23 16:12:50