Console
CloudStore

Get

Retrieve a stored value by cloudkey, or omit cloudkey to fetch all keys for this user + app.

POST /api/cloudstore/get.php
Requires Authorization: AppID:AppKey + user token

Request body

FieldTypeRequiredDescription
tokenstringrequiredUser session token
cloudkeystringoptionalIf omitted, returns all keys stored for this user + app

Success — single key 200

{
  "success": true,
  "scope": "single",
  "cloudkey": "save-slot-1",
  "dataobject": { "level": 15, "score": 4800 }
}

Success — all keys 200

{
  "success": true,
  "scope": "all",
  "count": 2,
  "data": [
    { "cloudkey": "save-slot-1", "dataobject": { "level": 15 } },
    { "cloudkey": "config",      "dataobject": { "music": true } }
  ]
}

Errors

CodeMessage
404Data not found for the specified cloudkey.