Users > Me

The following endpoints retrieve data about the currently authenticated user.

Current user data

get

Retrieves data about the authenticated user. Refer to the cols[] parameter accepted values to get more information about the currently authenticated user.

Authorizations
Query parameters
includeInvitedOrgbooleanOptional

Set this parameter to true if you want to get also the user roles in organizations with pending invitation. The default value is false.

Example: {"value":true}
colsstring[]Optional

Specifies columns that are returned in the response. Use the cols[] parameter for every column that you want to return in the response. For example GET /endpoint?cols[]=key1&cols[]=key2 to get both key1 and key2 columns in the response.

Check the "Filtering" section for a full example.

Example: {"value":["id","name","email","language","timezoneId","localeId","countryId","features","avatar","timezone","locale","emailNotifications","usersAdminsRoleId","userOrganizationRoles","userTeamRoles","forceSetPassword","hasPassword","tfaEnabled","isAffiliatePartner"]}
Responses
200
Successful response
application/json
get
GET /api/v2/users/me HTTP/1.1
Host: eu1.make.com
Accept: */*
200

Successful response

{
  "authUser": {
    "id": 1,
    "name": "Martin",
    "email": "[email protected]",
    "language": "en",
    "timezoneId": 113,
    "localeId": 18,
    "countryId": 1,
    "features": {
      "allow_apps": true
    },
    "avatar": "https://secure.gravatar.com/avatar/6b1a74d20d925c12a73af32bf0dd7164.jpg?d=mm",
    "timezone": "Europe/Prague",
    "locale": "cs",
    "emailNotifications": null
  }
}

User Organization invitations

get

Retrieves organization invitations of the currently authenticated user.

Authorizations
Responses
200
Successful response
application/json
get
GET /api/v2/users/me/organization-invitations HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
200

Successful response

{
  "userOrganizationInvitations": [
    {
      "hash": "e99ca895-4c54-4d13-b83a-8ab37c35f17a",
      "organizationId": 10,
      "organizationName": "Organization 10",
      "usersRoleId": 12,
      "invitation": "pending"
    },
    {
      "hash": "5cd8b8c3-cb5c-4bd8-8d31-4b92fcdc7768",
      "organizationId": 13,
      "organizationName": "Organization 13",
      "usersRoleId": 12,
      "invitation": "expired"
    }
  ]
}