Get Website User
Retrieves information about the specified user.
Available parameters
Include parameters
Parameter | Description |
---|---|
username | Find a user by username |
Find user by email. It must be a valid email address. | |
steam | Find user by steam. It can be steamId, steamId3 or steamId64 |
Example request:
curl "https://api.gamecms.org/v2/websites/user?username=Wohaho" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer your-token' \
-X GET
Or using email:
curl "https://api.gamecms.org/v2/websites/[email protected]" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer your-token' \
-X GET
Or using steam:
curl "https://api.gamecms.org/v2/websites/user?steam=STEAM_0:1:519453468" \
-H 'Accept: application/json' \
-H 'Authorization: Bearer your-token' \
-X GET