>
Returns a wide array of user-specific information for each user identifier passed.
| Name | Required | Type | Description |
|---|---|---|---|
| uids | Y | String | The list of coma separated user ID's. The max number of IDs is 100. |
| fields | Y | String | The list of coma separated field name |
Available field names:
Request : /users/getInfo?application_id=[Application ID]&sig=[Signature]&uids=111,222&fields=uid,first_name,locale,gender,pic_1
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:users_getInfo_response xmlns:ns2="https://api.rbkgames.com/">
<ns2:users>
<ns2:uid>111</ns2:uid>
<ns2:locale>ru</ns2:locale>
<ns2:gender>male</ns2:gender>
<ns2:first_name>Name</ns2:first_name>
<ns2:pic_1>https://rbkgames.com/files/pictures/ui_111.jpg</ns2:pic_1>
</ns2:users> <ns2:users>
<ns2:uid>222</ns2:uid>
<ns2:locale>ru</ns2:locale>
<ns2:gender>male</ns2:gender>
<ns2:first_name>Name</ns2:first_name>
<ns2:pic_1>https://rbkgames.com/files/pictures/ui_222.jpg</ns2:pic_1>
</ns2:users>
</ns2:users_getInfo_response>JSON
[{
"uid":"111",
"locale":"ru",
"first_name":"Name",
"gender":"male",
"pic_1":"https://rbkgames.com/files/pictures/ui_111.jpg"
},
{
"uid":"222",
"locale":"ru",
"first_name":"Name",
"gender":"male",
"pic_1":"https://rbkgames.com/files/pictures/ui_222.jpg"
}]Note! If some fields don't have any content, this fields won't be returned.