latestOpenAPI 3.1.02026-08-0884673.4 KB

3c40ff85e81d

Users

Get current user

Returns the user represented by the provided API key or OAuth token.

Rate limits:

  • Global: 120 requests per minute per API key.
get/me

Response

Current user fetched successfully.

Example response

{
  "data": {
    "id": "12345",
    "firstName": "Max",
    "lastName": "Mustermann",
    "email": "max@example.com",
    "locale": "en",
    "timeZone": "Europe/Berlin",
    "groups": [
      {
        "groupId": "456",
        "groupName": "Enterprise Sales"
      }
    ]
  }
}