Account

GET /account

Get the current user account properties.

Responses

  • 200

    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 \
 -X GET http://api.mycompany.com/v1/users/account
Response examples (200)
{
  "username": "string",
  "email": "hello@example.com",
  "created_at": "2023-05-04T09:42:00+00:00",
  "updated_at": "2023-05-04T09:42:00+00:00",
  "id": "string"
}
Response examples (200)
{
  "username": "string",
  "email": "hello@example.com",
  "created_at": "2025-05-04T09:42:00Z",
  "updated_at": "2025-05-04T09:42:00Z",
  "id": "string"
}