Template:AOTGResponseStatus

Revision as of 02:30, 28 March 2019 by DanielY (talk | contribs) (Created page with "*'''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 reque...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  • 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 Create debtor request is not complete.
{
    "RequestId": {{{1}}},
    "Status": "Processing"
}
Completed status
  • Completed status Indicates that the Create debtor request has been performed and succeeded.
{
    "RequestId": {{{1}}},
    "Status": "Completed"
}
Failed status
  • Failed status indicates that the Create debtor request has been performed but has error.
{
    "RequestId": {{{1}}},
    "Status": "Failed"
}