Template:AOTGResponseStatus: Difference between revisions

From AutoCount Resource Center
Content added Content deleted
No edit summary
No edit summary
Line 5: Line 5:
*Usually this happen when many requests are in a loop.
*Usually this happen when many requests are in a loop.
*:Tips: Make sure the request in the loop has a pause time, or use 'batch' method to process multiple records in single request.
*:Tips: Make sure the request in the loop has a pause time, or use 'batch' method to process multiple records in single request.
"RequestId": {{{1}}},
<span style="color:#336600;">"RequestId"</span>: <span style="color:#cc0000;">{{{1}}}</span>,
"Status": "InQueue"
<span style="color:#336600;">"Status"</span>: <span style="color:#cc0000;">"InQueue"</span>


======Processing status======
======Processing status======
*'''Processing''' status indicates that the request is not complete.
*'''Processing''' status indicates that the request is not complete.
"RequestId": {{{1}}},
<span style="color:#336600;">"RequestId"</span>: <span style="color:#cc0000;">{{{1}}}</span>,
"Status": "Processing"
<span style="color:#336600;">"Status"</span>: <span style="color:#cc0000;">"Processing"</span>


======Completed status======
======Completed status======
*'''Completed''' status Indicates that the request has been performed and succeeded.
*'''Completed''' status Indicates that the request has been performed and succeeded.
"RequestId": {{{1}}},
<span style="color:#336600;">"RequestId"</span>: <span style="color:#cc0000;">{{{1}}},
"Status": "Completed"
<span style="color:#336600;">"Status"</span>: <span style="color:#cc0000;">"Completed"</span>


======Failed status======
======Failed status======
*'''Failed''' status indicates that the request has been performed but has error.
*'''Failed''' status indicates that the request has been performed but has error.
"RequestId": {{{1}}},
<span style="color:#336600;">"RequestId"</span>: <span style="color:#cc0000;">{{{1}}},
"Status": "Failed"
<span style="color:#336600;">"Status"</span>: <span style="color:#cc0000;">"Failed"</span>

Revision as of 03:00, 28 March 2019


Here are the 4 response body of the process status.

InQueue status
  • InQueue status Indicates that the requests to AOTG Server is waiting to be processed.
  • Usually this happen when many requests are in a loop.
    Tips: Make sure the request in the loop has a pause time, or use 'batch' method to process multiple records in single request.
"RequestId": {{{1}}},
"Status": "InQueue"
Processing status
  • Processing status indicates that the request is not complete.
"RequestId": {{{1}}},
"Status": "Processing"
Completed status
  • Completed status Indicates that the request has been performed and succeeded.
"RequestId": {{{1}}},
"Status": "Completed"
Failed status
  • Failed status indicates that the request has been performed but has error.
"RequestId": {{{1}}},
"Status": "Failed"