Skip to main content
GET
/
v3
/
users
/
me
Read the authenticated user
curl --request GET \
  --url http://localhost/api/v3/users/me
{
  "id": 123,
  "name": "<string>",
  "email": "<string>",
  "throttle": 123,
  "roles": [
    {
      "id": 123,
      "handle": "<string>"
    }
  ],
  "permissions": [
    {
      "id": 123,
      "handle": "<string>"
    }
  ],
  "created_at": "<string>",
  "updated_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Response

User

id
integer
required
name
string
required
email
string
required
throttle
integer | null
required
roles
object[]
required
permissions
object[]
required
created_at
string
required
updated_at
string
required