GET api/Signing/SigningRooms/{signingRoomId}/Participants/ESignConsent

Gets a PDF document that contains the ESIGN consent text and acceptance date that was accepted by the current signer. The current user must be a participant in the specified SigningRoom.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
signingRoomId

The id of the SigningRoom.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The ESign Consent PDF document.

ESignSystems.SmartSAFE.Models.SigningRoomManager.DownloadDocumentModel
NameDescriptionTypeAdditional 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>