GET api/Signing/{signingRoomId}/Documents/{documentId}/SmartDoc/SignaturePoints

Gets the signature points of the SMART Doc® document with the specified document id in the specified SigningRoom. The current signer user must have access to the SigningRoom that contains the document and must have review or sign privileges on the document.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
signingRoomId

The id of the SigningRoom.

integer

Required

documentId

The id of the document.

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of SmartDocumentSignaturePointModel

Collection of ESignSystems.SmartSAFE.Models.SmartDocuments.SmartDocumentSignaturePointModel
NameDescriptionTypeAdditional information
SignatureReferenceId

Gets or sets the signature reference identifier.

string

None.

SignedDateTime

Gets or sets the time that the signature point was signed.

date

None.

Signed

Gets or sets a value indicating whether the signature point is signed.

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SignatureReferenceId": "sample string 1",
    "SignedDateTime": "2025-06-28T09:26:04.1357636-04:00",
    "Signed": true
  },
  {
    "SignatureReferenceId": "sample string 1",
    "SignedDateTime": "2025-06-28T09:26:04.1357636-04:00",
    "Signed": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSmartDocumentSignaturePointModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartDocuments">
  <SmartDocumentSignaturePointModel>
    <SignatureReferenceId>sample string 1</SignatureReferenceId>
    <Signed>true</Signed>
    <SignedDateTime>2025-06-28T09:26:04.1357636-04:00</SignedDateTime>
  </SmartDocumentSignaturePointModel>
  <SmartDocumentSignaturePointModel>
    <SignatureReferenceId>sample string 1</SignatureReferenceId>
    <Signed>true</Signed>
    <SignedDateTime>2025-06-28T09:26:04.1357636-04:00</SignedDateTime>
  </SmartDocumentSignaturePointModel>
</ArrayOfSmartDocumentSignaturePointModel>