NOTE: This service is under development.
The system service is used to retrieve retrieves information about the current state of the CLAIMS Direct server.
/system/dwh/loading/info
...
Method | GET | ||
---|---|---|---|
Path | /system/dwh/loading/info | ||
Parameter |
Values | Description |
@load_id | String: ex. 192314 | Load identifier associated with update process |
Example:
Code Block |
---|
wget -O- \ --header 'x-user: x' \ --header 'x-password: y' \ 'httphttps://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", ; as of cdws v3.9.1 "chksum" : "1fa00eb72af89d4a64117853ea203b70", "stream_type" : "xml" }, } |
Response XML
Code Block | ||
---|---|---|
| ||
<?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" /> <!-- as of cdws v3.9.1, the additional attributes @chksum and @stream_type are available --> </response> |
Note: If a load-id
is not a viable update appropriate to your subscription level or stream privileges, HTTP 204 (No Content) will be returned.
Code Block | ||
---|---|---|
| ||
/dwh/loading/info?load_id=319408' HTTP/1.1 204 No Content Date: Fri, 31 Aug 2018 14:35:51 GMT Server: Apache/2.4.6 (CentOS) mod_perl/2.0.10 Perl/v5.16.3 Connection: close |