Returns current authenticated user.

GET /api/v1/users/self

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string(uuid)
    • username string
    • display_name string
    • avatar_url string | null
  • 404 application/json

    Not Found

    Hide response attribute Show response attribute object
    • error_description string
  • 500 application/json

    Internal Server Error

    Hide response attribute Show response attribute object
    • error_description string
GET /api/v1/users/self
curl \
 --request GET 'https://crowdparlay.com/api/v1/users/self'
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"
}