Import the File

This step involves importing the Oracle Insurance Gateway configuration saved in a ZIP file into the target environment.

Request

To retrieve audit trail, set the enableAuditTrail body parameter to TRUE.

POST http://<host>:<port>/<context-root>/dataexchange/export/datasetdefinition/GATEWAY_CONFIGURATION

Content-Type: application/json
Accept: multipart/form-data
enableAuditTrail: TRUE

<zip file>

Response

Returns HTTP status codes as mentioned in the Building a Migration Set page. A 201 Created response shows a successful upload.

Wait for Notification

Once the import process is finalized, a notification is sent to the pre-configured import endpoint with the following format:

<importResponse xmlns="http://healthinsurance.oracle.com/datasetoperations/v2" xmlns:ns0="http://healthinsurance.oracle.com/datatypes">
<resultMessages result="S"/>
</importResponse>

Retrieve Audit Trail

To retrieve an audit trail, get the ID of the location header in the response. In this example, the following changes occur:

  • Update: Changed the Description of ClaimsExtract_WDJ integration from Extract for Pended Claims to Extract for Pended Claims 1111.

{
            "id": <some id>,
            "action": "U",
            "changeLog": "{\"Integration\":{\"updated\":[{\"objectVersionNumber\":{\"newValue\":7,\"_type\":\"direct\",\"oldValue\":6},\"descr\":{\"newValue\":\"Extract for Pended Claims\",\"_type\":\"direct\",\"oldValue\":\"Extract for Pended Claims 1111\"},\"id\":2004}]}}",
            "functionalKey": "ClaimsExtract_WDJ,INTEGRATION,null",
            "recordId": 2004,
            "links": [
                {
                    "href": "http://<host>:<port>/<context-root>/generic/audittraildetails/<ID>",
                    "rel": "self"
                }
            ],
            "creationDate": {
                "value": "2022-02-28T07:27:14.734+01:00"
}