Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves a collection of all notifications for the authenticated user. Returned notifications are sorted by ID in descending order.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/notifications', { method: 'GET', headers: {}, }); const data = await response.json();
{ "notifications": [ { "id": "text", "subject": "text", "read": "2025-01-11T06:22:22.817Z", "created": "2025-01-11T06:22:22.817Z", "type": 0 } ], "userUnreadNotifications": 0, "userZoneNotifications": [ { "imtZoneId": 0, "unreadNotifications": 0 } ], "pg": { "last": "text", "showLast": false, "sortBy": "text", "sortDir": "text", "limit": 0, "offset": 0 } }