Get document(s) for sign¶
You can sign document if document has signature field inside assigned to the particular user. Using this endpoint you can get the list of the documents to sign. To get documents list for sign you should send the following api request:
Request details¶
Method |
POST |
URL |
|
Authorization |
Bearer {token} |
content-type |
application/json |
mailboxUuid |
{uuid} |
envelopeUuid |
{uuid} |
docIds |
(array[string]) |
Depending on the body of a request you can get two type of the response:
Send request with empty array in body - get all documents from the envleope with signature related to particular user
Send request with particular documentID in body - get particular document for sign
In response we get an array with information about documents for sign.
Response details¶
Status code: 200 OK
[
{
"documentId": "string",
"pdf": "string",
"pdfName": "string",
"signatureName": "string",
"xml": "string",
"xmlName": "string"
}
]
Description of the response data:
documentId |
id of the document |
PDF binary data |
|
pdfName |
Name of the docuemnt |
signatureName |
Name of the signature field |
xml |
Document in .xml format |
xmlName |
Structured document name |