Auth Client API
HomeLootLocker
HomeLootLocker
LootLocker
  1. Remote
  • V3
    • Config
      • External Authentication
      • List Player Identity Providers
    • OAuth
      • Impersonation
      • Authorize
      • Token
      • Token Exchange
      • Grant Type
    • Remote
      • Lease
        POST
      • Lease
        GET
      • Claim
        POST
      • Verify
        POST
      • Authorize
        POST
  1. Remote

Claim

POST
https://api.lootlocker.com/client/v3/remote/claim
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.lootlocker.com/client/v3/remote/claim' \
--header 'Content-Type: application/json' \
--data-raw '{
    "code": "{{v3_client_remote_lease_code}}"
}'
Response Response Example
200 - Successful Response
{
    "code": "H39KPSR6",
    "nonce": "01HBZK7MWX2QXZYC5P3NR6AGHY",
    "client_id": "dev_e57d9718862e4533958284aa06bcebba",
    "environment": {
        "id": "01HBR1NYMATRK20R2YS5TNHKCF",
        "name": "Some Game"
    }
}

Request

Body Params application/json
code
string 
required
Examples

Responses

🟢200Successful Response
application/json
Body
code
string 
required
nonce
string 
required
client_id
string 
required
environment
object 
required
id
string 
required
name
string 
required
🟠404Error: Not Found
🟠400Error: Bad Request
Previous
Lease
Next
Verify
Built with