GET api/Signing/{signingRoomId}/Documents/{documentId}/PrintAndSign/Status

Gets the participant status of a specific document in a signing room.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
signingRoomId

The signing room.

integer

Required

documentId

The document id.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The status participant information.

ESignSystems.SmartSAFE.Models.Signing.DocumentAnnotationImageModel
NameDescriptionTypeAdditional information
PopulatedDate

Gets or sets the date and time that the annotation was populated.

date

Required

Image

Gets or sets the annotation image.

Collection of byte

Required

MimeType

Gets or sets the annotation image's mime type.

string

Required

Response Formats

application/json, text/json

Sample:
{
  "PopulatedDate": "2026-01-01T17:32:21.6307552-05:00",
  "Image": "QEA=",
  "MimeType": "sample string 2"
}

application/xml, text/xml

Sample:
<DocumentAnnotationImageModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing">
  <Image>QEA=</Image>
  <MimeType>sample string 2</MimeType>
  <PopulatedDate>2026-01-01T17:32:21.6307552-05:00</PopulatedDate>
</DocumentAnnotationImageModel>