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

Verify

POST
https://api.lootlocker.com/client/v3/remote/verify
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.lootlocker.com/client/v3/remote/verify' \
--header 'Authorization: Bearer {{v3_client_access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "code": "{{v3_client_remote_lease_code}}",
    "nonce": "{{v3_client_remote_lease_nonce}}"
}'
Response Response Example
200 - Successful Response
{
    "player_id": "01HBTPWVHZDH05ZCRR97NRD5VJ",
    "lease": {
        "code": "H39KPSR6",
        "nonce": "01HBZK7MWX2QXZYC5P3NR6AGHY",
        "status": "VERIFIED",
        "user_agent": "PostmanRuntime/7.33.0",
        "ip": "[::1]:50703"
    },
    "environment": {
        "id": "01HBR1NYMATRK20R2YS5TNHKCF",
        "name": "Some Game"
    }
}

Request

Header Params
Authorization
string 
required
Example:
Bearer {{v3_client_access_token}}
Body Params application/json
code
string 
required
nonce
string 
required
Examples

Responses

🟢200Successful Response
application/json
Body
player_id
string 
required
lease
object 
required
code
string 
required
nonce
string 
required
status
string 
required
user_agent
string 
required
ip
string 
required
environment
object 
required
id
string 
required
name
string 
required
🟠404Error: Not Found
🟠400Error: Bad Request
Previous
Claim
Next
Authorize
Built with