Searches users by the nickname
parameter and gets a list of them. Search can be performed instantly when the user starts entering the search parameter.
The workflow of using this call:
The current user can execute this call only one time per second.
OK
Unauthorized
Unprocessable Entity
Too Many Requests
curl -i -X GET \ 'https://login.xsolla.com/api/users/search/by_nickname?nickname=string&offset=0&limit=100' \ -H 'Authorization: YOUR_API_KEY_HERE'
{- "offset": 0,
- "total_count": 0,
- "users": [
- {
- "avatar": "string",
- "is_me": true,
- "last_login": "string",
- "nickname": "string",
- "registered": "string",
- "tag": "string",
- "user_id": "string"
}
]
}