Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves data about the authenticated user. Refer to the cols[] parameter accepted values to get more information about the currently authenticated user.
cols[]
Successful response
const response = await fetch('https://eu1.make.com/api/v2/users/me', { method: 'GET', headers: {}, }); const data = await response.json();
{ "authUser": { "id": 0, "name": "text", "email": "name@gmail.com", "language": "text", "timezoneId": 0, "localeId": 0, "countryId": 0, "features": { "allow_apps": false }, "avatar": "https://example.com", "timezone": "text", "locale": "text", "usersAdminsRoleId": 0, "hasPassword": false, "tfaEnabled": false, "forceSetPassword": false, "userOrganizationRoles": [ { "usersRoleId": 0, "userId": 0, "organizationId": 0, "invitation": "text" } ], "userTeamRoles": [ { "usersRoleId": 0, "userId": 0, "teamId": 0, "changeable": false } ], "lastlogin": "2025-01-11T05:57:07.329Z" } }