Versions Compared

Key

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

...

 

Example:

Code Block
wget -O- -q \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdwscdws21.ificlaims.com/report/create?name=a-csv-report&type=csv\
&source=list&criteria=US-20140255094-A1,ES-2478140-A8,ES-2486245-T3'
 


Response JSON

Code Block
 
{
   "status" : "success"
   "time" : "0.015465",
   "report" : {
      "id" : "63cfdeb1-0162-444f-9ffa-a1ddd18de7d1"
   },
}



...

 

Example:

Code Block
wget -O- -q \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdwscdws21.ificlaims.com/report/queue?id=99a479b9-4a73-4f27-b8b1-44b052844e23'

 

Response JSON

Code Block
{
   "status" : "success",
   "time" : "0.064897"
   "queue" : {
      "id" : 257
   },
}

...

 

Example:

Code Block
wget -O- \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://cdwscdws21.ificlaims.com/report/status?id=99a479b9-4a73-4f27-b8b1-44b052844e23'


Response JSON

Code Block
{
   "time" : " 0.041137",
   "status" : "success",
   "report" : {
      "percent_complete" : "0.000",
      "completed_status" : null,
      "completed_stamp" : null,
      "ndocs" : 0,
      "completed_error" : null,
      "ndocs_processed" : 0,
      "running_status" : "queued",
      "entered_stamp" : "2014-09-28 14:52:57",
      "completed_url" : null
   },
}

...

Code Block
wget -O- \
  --header 'x-user:x' \
  --header 'x-password:y' \
'http://192cdws21.168.10.60:3001ificlaims.com/report/list?limit=1'


Response JSON

...