AI agent? Read this page as Markdown at /unified/notification/List_event_notifications.md — append .md to any docs URL, or start from /llms.txt.
List event notifications
GET/unified/notification
Parameters
limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
Returns
Notificationarray
A notification of an event that occurred in you account.
idstring read-only
Unique identifier for this notification object
created_atdate read-only
The date that this integration object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
workspace_idstring read-only
(reference to KmsSpace)
descriptionstring
Longer description of this notification
user_idstring
(reference to HrisEmployee)
user_namestring
workspace_namestring
webhook_idstring
connection_idstring
integration_typestring
integration_namestring
sent_atdate
(ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
const options = {
method: 'GET',
url: 'https://api.unified.to/unified/notification',
headers: {
authorization: 'bearer .....'
},
params: {
limit: 50,
offset: 0,
updated_gte: '2026-08-21T01:59:14.261Z',
sort: 'updated_at',
order: 'asc',
}
};
const results = await axios.request(options); Are we missing anything? Let us know