Get User By ID
GET
/v1/user/{id}Request
Path Params
id
string
required
Example:
{{userID}}
Request samples
Responses
OK(200)
Record Not Found(404)
Server Error(500)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object
required
id
string
required
avatarurl
string
required
username
string
required
country
null
required
role
string
required
Example
{
"data": {
"id": "aa587095-a604-4c32-9215-ac74a1db33d5",
"avatarurl": "<image link>",
"username": "Test",
"country": null,
"role": "User"
}
}
Last modified: 24 days ago