Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning

Note: This service is under development.

 

The system service is used to retrieve information about the current state of the CLAIMS Direct server.

/system/dwh/loading/info

 

MethodGET

Path

/system/dwh/loading/info

Parameter ValuesDescription
 @load_idString: ex. 192314Load identifier associated with update process

Example:

Code Block
wget -O- \
  --header 'x-user: x' \
  --header 'x-password: y' \
'http://cdws21.ificlaims.com/system/dwh/loading/info?load_id=192314'

 

Response JSON

Code Block
{
   "status" : "success",
   "time" : "0.065767"
   "load" : {
      "completed_status" : "success",
      "priority" : 0,
      "completed_stamp" : "2014-08-18 21:20:05.270184",
      "office" : "FVR",
      "load_id" : 192314,
      "ndocs" : 5118,
      "running_status" : "complete",
      "entered_stamp" : "2014-08-18 13:21:32.441555",
      "load_source" : "IFI-CLAIMINF"
   },
}

 

Response XML

Code Block
languagexml
<?xml version="1.0"?>
<response method="system/dwh/loading/info" status="success" time="0.072675">
  <load entered_stamp="2014-08-18 13:21:32.441555"
        running_status="complete"
        load_source="IFI-CLAIMINF"
        completed_stamp="2014-08-18 21:20:05.270184"
        priority="0"
        completed_status="success"
        load_id="192314"
        office="FVR"
        ndocs="5118"/>
</response>