Retrieve IT System Changes Events

Gets the list of It Systems that have changed since a given date.

MethodGET
Content-Typeapplication/json
URLapi/hub/external-integration/it-systems/integration-events

 

Body

Required JSON Parameters

Name

Value

Description

eventTypeEnumSee table in appendix for values
sinceDateFormat: yyyy-MM-dd'T'HH:mm:ss,
e.g. 2024-01-01T23:30:00
PageIntegerResults page you want to retrieve (0...N)
SizeIntegerNumber of records per page
SortAs I descSorting criteria in the format:
Sample Curl Requestcurl -X GET --header 'Accept: application/json' --header
'Authorization: Bearer <Auth Token> '
/api/hub/it-systems/integration-events?since=2025-01-01T23%3A30%3A00&e
ventType=DATA_TRANSFER_RISK_CHANGED&page=0&size=20'
Success ResponseCode: 200
Response Content

{
          "content": [
                  {
                         "entityId": "string",
                         "recordType": "string",
                         "eventType": "string",
                         "oldValue": "string",
                         "newValue": "string",
                         "name": "string",
                         "externalId": "string",
                         "externalDataSource": "string",
                         "created": "date",
                         "action": "string",
                         "field": "string",
                         "reference": "string"
                  }
            ],
            "last": true,
            "totalElements": 0,
            "totalPages": 0,
            "first": true,
            "size": 20,
            "number": 0,
            "sort": [{"direction": "ASC","property": "created"}],

            "numberOfElements": 0,
            "empty": false
}

Error Response

Code: 400 Bad Request

Code: 401 Unauthorized

Code: 403 Forbidden

Code: 404 Not Found