Connect API Catalog///
- API Documentation
Creditsafe Connect
- All Notification Events
List Company Events
All EventRules
Filtered EventRules
All Notification Events
Get all notification events generated for companies monitored in your portfolios, based on the notification rules enabled. The notification events returned will be filtered based upon the supplied search criteria.
Security
bearerToken
Return notification events that match the given search value across multiple fields.
The search query will filter results based on the following fields:
- Company Name - Returns events for companies whose name contains the search value
- Country Code - Returns events for companies in the specified country (e.g., "GB", "US")
- Event Date - Returns events that occurred on the specified date (format: YYYY-MM-DD)
- Event ID - Returns the specific notification event matching the provided ID
Examples:
- Searching for
"creditsafe"will return all notification events where the company name, country code, event date, or event ID contains "creditsafe" - Searching for a specific Event ID (e.g.,
"12345") will return only that notification event - Searching for
"GB"will return notification events for companies in Great Britain - Searching for
"2025-11-12"will return notification events that occurred on November 12, 2025
- Sandbox serverhttps://connect.sandbox.creditsafe.com/v1/monitoring/notificationEvents
- Production serverhttps://connect.creditsafe.com/v1/monitoring/notificationEvents
curl -i -X GET \
'https://connect.sandbox.creditsafe.com/v1/monitoring/notificationEvents?searchQuery=string&sortBy=companyName&sortDir=asc&startDate=2019-08-24T14%3A15%3A22Z&endDate=2019-08-24T14%3A15%3A22Z&page=0&pageSize=0&filterByCreatedDate=false' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
{ "correlationId": "23921650-c073-11ea-860f-06bc8182190e", "totalCount": 36, "data": [ { … } ], "paging": { "size": 10, "prev": 0, "next": 2, "last": 3 } }