GET /account

Get the current user account properties.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • username string
    • email string(email)
    • created_at string(date-time)
    • updated_at string(date-time)
    • id string(uuid)
GET /account
curl \
 --request GET 'http://api.mycompany.com/v1/users/account'
Response examples (200)
{
  "username": "string",
  "email": "hello@example.com",
  "created_at": "2026-05-04T09:42:00Z",
  "updated_at": "2026-05-04T09:42:00Z",
  "id": "string"
}