Skip to content

Retrieve monitoring directory

GetMonitoringResultSet

Methode: GET

Endpoint: /v3/monitorings

Parameter Description Explanation
MonitoringFilter.OrderId Order number If known, the order number
MonitoringFilter.CrefoId CrefoID Filter by Crefo number.
MonitoringFilter.ProductCode Product code Filter by product.
MonitoringFilter.Reference1 Customer reference 1 Filter by customer reference.
MonitoringFilter.StartDate Monitoring start date Filter by start date.
MonitoringFilter.EndDate Monitoring end date Filter by end date.
MonitoringFilter.State Monitoring status Filter by status
- Void: all
- Expired: logged out
- Active: active
- Future: future
PageSize Page length Number of entries per page
LastId Last ID Last known order no.

Items listed in bold are mandatory.

Example Request URL

https://api.crediconnect.ch/v3/monitorings?MonitoringFilter.ProductCode=7101APLUS&MonitoringFilter.State=Active&PageSize=10&LastId=1

Example Response

{
   "keySetPaginationInfo":    {
      "pageSize": 10,
      "lastId": 1,
      "nextId": 800001527
   },
   "totalCount": 1,
   "data": [   {
      "orderId": 800001527,
      "requestedCrefoId": null,
      "crefoId": "425328000",
      "productCode": "7101APLUS",
      "reference1": "Test1",
      "reference2": "Ref2",
      "reasonOfInquiry": "Claim",
      "startDate": "2026-02-10T00:00:00",
      "endDate": "2026-03-03T00:00:00"
   }]
}