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 --request GET \ --url 'https://login.xsolla.com/api/users/search/by_nickname?nickname=SOME_STRING_VALUE&offset=0&limit=100' \ --header 'Authorization: Bearer BEARER_TOKEN'
{- "offset": 3,
- "total_count": 100,
- "users": [
- {
- "is_me": true,
- "last_login": "2018-10-01T13:15:08+05:00",
- "nickname": "Quana",
- "registered": "2018-10-01T13:15:08+05:00",
- "tag": "24234",
- "user_id": "2a6e0079-d7a7-11e8-963b-82010aa80778"
}, - {
- "is_me": false,
- "last_login": "2018-10-01T13:15:08+05:00",
- "nickname": "Quanare",
- "registered": "2018-10-01T13:15:08+05:00",
- "tag": "249078",
- "user_id": "1e6e2979-d7f7-11e8-963b-42010aa80910"
}, - {
- "is_me": false,
- "last_login": "2018-10-01T13:15:08+05:00",
- "nickname": "Quanare",
- "registered": "2018-10-01T13:15:08+05:00",
- "tag": "434535",
- "user_id": "2e6e2979-d7f7-11e8-963b-42010aa80922"
}
]
}