Returns user with the specified ID.

GET /api/v1/users/{userId}

Path parameters

Responses

GET /api/v1/users/{userId}
curl \
 --request GET 'https://crowdparlay.com/api/v1/users/{userId}'
Response examples (200)
{
  "id": "string",
  "username": "string",
  "display_name": "string",
  "avatar_url": "string"
}
Response examples (404)
{
  "error_description": "string"
}
Response examples (500)
{
  "error_description": "string"
}