End Point
PROD: https://websvcs.quikforms.com/rest/quikformxtract/v1000/documents/{{submitDocumentTransId}}/status
Description
After submitting a document for processing, customers can check the status of the submit request to determine what stage of the process the submitted document is in.
To get the status of a submitted document, first get an AuthToken from the REST Authentication service and then provide the SubmitDocumentTransID (along with the AuthToken).
Request
Parameter | Type | Required | Description |
---|---|---|---|
AuthToken | String | Yes | OAuth token to authorize the API call |
SubmitDocumentTransID | Integer | Yes | Unique identifier for the submitted document |
Sample Request
URL: https://websvcs.quikforms.com/rest/quikformxtract/v1000/documents/{{submitDocumentTransId}}/status
Method: GET
Response
Parameter | Type | Description |
---|---|---|
SubmitDocumentTransID | Integer | Unique identifier for the submitted document |
StatusID | Integer | StatusID of the document: 1 = Not Processed |
Status | String | Status label of the document: 1 = Not Processed |
ErrorCode | String | Error code if the operation failed |
ErrorMessage | String | Error message if the operation failed |
Sample Response
{ "ResultData": { "SubmitDocumentTransId": 41, "StatusId": 3, "Status": "Cancelled" }, "ErrorCode": 0, "Message": "", "Errors": null }