Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves a collection of all users for a team or an organization with a given ID. Returned users are sorted by id in descending order.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/users', { method: 'GET', headers: {}, }); const data = await response.json();
{ "users": [ { "id": 0, "name": "text", "email": "name@gmail.com", "language": "text", "timezoneId": 0, "localeId": 0, "countryId": 0, "features": { "allow_apps": false }, "avatar": "https://example.com" } ], "pg": { "last": "text", "showLast": false, "sortBy": "text", "sortDir": "text", "limit": 0, "offset": 0 } }