Get User info

GET /me

This endpoint is used to retrieve information about currently signed user

Get all info about currently signed user

Responses

  • 200 application/json

    If product is succesfully updated 200 status code is returned

    Hide response attributes Show response attributes object
    • id integer(int64)
    • createdAt string(date-time)
    • updatedAt string(date-time)
    • lastLogedAt string(date-time)
    • email string
    • slug string
    • fullName string
    • isActive boolean
    • isOnboardingFinished boolean
    • roles array[object]
      Hide roles attribute Show roles attribute object
      • role string
    • integrations array[object]
      Hide integrations attribute Show integrations attribute object
      • integration string
    • theme string
    • isEarlyAdopter boolean
  • 404

    Product is not found

GET /me
curl \
 --request GET 'api.services.omnicado.com/api/v2/me' \
 --header "X-OMNICADO-TOKEN: $API_KEY"
Response examples (200)
{
  "id": 42,
  "createdAt": "2025-05-04T09:42:00Z",
  "updatedAt": "2025-05-04T09:42:00Z",
  "lastLogedAt": "2025-05-04T09:42:00Z",
  "email": "jan@novak.cz",
  "slug": "Společnost s.r.o.",
  "fullName": "Jan Novák",
  "isActive": true,
  "isOnboardingFinished": true,
  "roles": [
    "admin"
  ],
  "integrations": [
    "shoptet",
    "fulfillment"
  ],
  "theme": [
    "dark"
  ],
  "isEarlyAdopter": true
}