GET api/Documents/{documentId}/AuditCertificate
Allows a client admin or a SigningRoom admin to get the audit certificate of a signed document.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
documentId |
The document identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The download document data, containing the audit certificate.
ESignSystems.SmartSAFE.Models.SigningRoomManager.DownloadDocumentModelName | Description | Type | Additional information |
---|---|---|---|
DocumentId |
Gets or sets the document identifier. |
integer |
Required |
Document |
Gets or sets the document to be downloaded. |
Collection of byte |
None. |
DocumentName |
Gets or sets the name of the document to be downloaded. |
string |
None. |
MimeType |
Gets or sets the mime type of the document to be downloaded. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "DocumentId": 1, "Document": "QEA=", "DocumentName": "sample string 1", "MimeType": "sample string 2" }
application/xml, text/xml
Sample:
<DownloadDocumentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SigningRoomManager"> <Document>QEA=</Document> <DocumentId>1</DocumentId> <DocumentName>sample string 1</DocumentName> <MimeType>sample string 2</MimeType> </DownloadDocumentModel>