Pass the id of the required document as query parameter of the GET request.
API Response
The API sends a JSON response in the following format:
{
“documentId”: “101”,
“status”: “inprogress”
}
If the document signing is completed by all the requested signatories, then the response will also include a download link.
{
“downloadLink”: “https://seqursign.com/download/<userId>/<docId>/<docName>”,
“documentId”: “101”,
“status": “completed”
}
If any of the signatories decline the signature request, the status will be marked as "declined" and the response will include the reason for the decline.
{
“reason”: “intend for declining will be stated here”,
“documentId”: “101”,
“status": “declined”
}
The following are the statuses used in Seqursign:
Status |
underprocessing
|
This status is generated when the document is in the process of being created.
|
pending
|
This status is generated when the document has been send out for signature, however the recipient has not viewed/opened the document.
|
inprogress
|
The recipient has received and viewed the document, but has not signed it yet.
|
completed
|
The recipient has completed signing the document.
|
declined
|
The recipient has declined signing the document.
|
expired
|
Document has reached the chosen expiry date and removed from the system.
|