GET api/Reports/SigningRoomMetrics

Gets the metrics of the signing rooms for the current client.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Model class with the count of signing rooms in different states.

ESignSystems.SmartSAFE.Models.Reports.SigningRoomMetricsModel
NameDescriptionTypeAdditional information
ReviewableDocumentCount

Gets or sets the count of documents that are reviewable.

integer

None.

ReviewedDocumentCount

Gets or sets the count of documents that have been reviewed.

integer

None.

SignableDocumentCount

Gets or sets the count of documents that are signable.

integer

None.

SignedDocumentCount

Gets or sets the count of documents that are signed.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ReviewableDocumentCount": 1,
  "ReviewedDocumentCount": 2,
  "SignableDocumentCount": 3,
  "SignedDocumentCount": 4
}

application/xml, text/xml

Sample:
<SigningRoomMetricsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
  <ReviewableDocumentCount>1</ReviewableDocumentCount>
  <ReviewedDocumentCount>2</ReviewedDocumentCount>
  <SignableDocumentCount>3</SignableDocumentCount>
  <SignedDocumentCount>4</SignedDocumentCount>
</SigningRoomMetricsModel>