Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves organization invitations of the currently authenticated user.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/users/me/organization-invitations', { method: 'GET', headers: {}, }); const data = await response.json();
{ "userOrganizationInvitations": [ { "hash": "text", "invitation": "text", "usersRoleId": 0, "organizationId": 0, "organizationName": "text", "zone": "text" } ] }