Difference between revisions of "API Method QueueList"

From Updox API
Jump to: navigation, search
(Created page with "A method to obtain a list of items on the Integration Queue. == Fields == Please refer to the [https://updoxqa.com/iodox/updox-iodox Interactive API] for a list of the fiel...")
 
(Request)
Line 9: Line 9:
 
==== Request ====
 
==== Request ====
 
REQUEST
 
REQUEST
{
+
  {
 
   "auth":{
 
   "auth":{
 
     "applicationId":"updox",
 
     "applicationId":"updox",
 
     "applicationPassword":"password",
 
     "applicationPassword":"password",
     "accountId":"100"}
+
     "accountId":"100"
}
+
    }
 +
  }
  
 
==== Response ====
 
==== Response ====

Revision as of 13:15, 10 August 2015

A method to obtain a list of items on the Integration Queue.

Contents

Fields

Please refer to the Interactive API for a list of the fields for this method.


Sample Request and Response

Request

REQUEST

 {
 "auth":{
   "applicationId":"updox",
   "applicationPassword":"password",
   "accountId":"100"
   }
 }

Response

{

   "successful": true,
   "responseMessage": "OK",
   "responseCode": 2000,
   "messages": [
       {
           "messageId": "474030c0-a57e-4386-a377-c1eebfa7a084",
           "messageType": "{MessageType}",
           "queuedDateTime": 1438710151000,
           "processAttemptCount": 0,
           "processed": false,
           "statusText": "{StatusTextMessage}"
       }
   ]

}