GETUSERID

Obtiene el ID de un usuario desde su username

URL Base

http://api3.devapitest.click/getuserid
Parámetros
Nombre Tipo Default Descripción
key String - Api Key del Agente.
secret String - Api secret del Agente.
user Integer - Username del jugador.
Ejemplo Request
curl --location 'http://URL_BASE' \
--header 'Content-Type: application/json' \
--data ' {
      "key": "abc",
      "secret": "def",
      "user": "testing1"
    } '
Ejemplo Response OK
{
"status":"OK",
"user":"100001",
"cache":1
}
Ejemplo Response ERROR
{
"status":"ERROR",
"description":"Missing user parameter"
}
Test Request