Notification Logs
Use these operations to interact with notification logs in Cortex.
Required permissions
Your API key must have the View notification logs
permission.
Operations
Retrieve notification logs based on the provided filters. API key must have the View Notification logs
permission.
The unique identifier of the notification run that this log is associated with.
The email address that this notification was sent to.
The unique identifiers of the entities that the notifications were sent to.
The channel in Slack or MS Teams where the notification was sent.
The ISO date and time to start the search from.
2021-01-01T00:00:00
The ISO date and time to end the search at.
2021-01-01T00:00:00
Number of results to return per page, between 1 and 1000. Default 250.
250
Page number to return, 0-indexed. Default 0.
0
Sort the results ascending or descending.
DESC
Possible values: GET /api/v1/notifications/logs HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
{
"logs": [
{
"dateCreated": "2025-06-28T19:23:14.615Z",
"dateDelivered": "2025-06-28T19:23:14.615Z",
"dateUpdated": "2025-06-28T19:23:14.615Z",
"errorMessage": "text",
"failedReason": "CHANNEL_NOT_FOUND",
"id": 1,
"ignoredReason": "USER_UNSUBSCRIBED",
"medium": "SLACK",
"recipientChannel": "#general",
"recipientEmail": "text",
"recipientEntityId": 1,
"recipientType": "USER",
"recipientUserId": 1,
"runId": 1,
"status": "READY",
"type": "INITIATIVE_CREATION"
}
],
"page": 1,
"total": 1,
"totalPages": 1
}
Retrieve notification runs based on the provided filters. API key must have the View Notification logs
permission.
A search query to filter the results.
Whether to include the objects associated with the notification run.
false
The ISO date and time to start the search from.
2021-01-01T00:00:00
The ISO date and time to end the search at.
2021-01-01T00:00:00
Number of results to return per page, between 1 and 1000. Default 250.
250
Page number to return, 0-indexed. Default 0.
0
Sort the results ascending or descending.
DESC
Possible values: GET /api/v1/notifications/logs/run HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
{
"page": 1,
"runs": [
{
"dateCreated": "2025-06-28T19:23:14.615Z",
"dateUpdated": "2025-06-28T19:23:14.615Z",
"deliveredCount": 1,
"errorMessage": "text",
"failedReason": "PACKET_GENERATOR_ERROR",
"id": 1,
"ignoredReason": "SCORECARD_DISABLED",
"medium": "SLACK",
"notificationObjects": [
{
"cid": "en2da8159dbeefb974",
"id": 1,
"name": "text",
"tag": "production-readiness-scorecard",
"type": "ENTITY",
"url": "text"
}
],
"notificationType": "INITIATIVE_CREATION",
"originalRunId": 1,
"seqNo": 1,
"status": "CREATED",
"summary": "text"
}
],
"total": 1,
"totalPages": 1
}
Last updated
Was this helpful?