POST api/Reports/SigningRoomsByCreatedDate

Gets all signing rooms created between the given dates for the current user.

Request Information

URI Parameters

None.

Body Parameters

Search criteria that contains the dates to search on.

ESignSystems.SmartSAFE.Models.Reports.SigningRoomCreatedSearchCriteria
NameDescriptionTypeAdditional information
StartDate

Gets or sets the start date for the search.

date

None.

EndDate

Gets or sets the end date for the search.

date

None.

Request Formats

application/json, text/json

Sample:
{
  "StartDate": "2026-01-01T17:32:49.1263065-05:00",
  "EndDate": "2026-01-01T17:32:49.1263065-05:00"
}

application/xml, text/xml

Sample:
<SigningRoomCreatedSearchCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
  <EndDate>2026-01-01T17:32:49.1263065-05:00</EndDate>
  <StartDate>2026-01-01T17:32:49.1263065-05:00</StartDate>
</SigningRoomCreatedSearchCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

List of CreatedSigningRoomModel.

Collection of ESignSystems.SmartSAFE.Models.Reports.CreatedSigningRoomModel
NameDescriptionTypeAdditional information
SigningRoomId

Gets or sets the SigningRoom id.

integer

None.

SigningRoomName

Gets or sets the SigningRoom name.

string

None.

SigningRoomCreatedDate

Gets or sets the date SigningRoom was created.

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SigningRoomId": 1,
    "SigningRoomName": "sample string 2",
    "SigningRoomCreatedDate": "2026-01-01T17:32:49.1418658-05:00"
  },
  {
    "SigningRoomId": 1,
    "SigningRoomName": "sample string 2",
    "SigningRoomCreatedDate": "2026-01-01T17:32:49.1418658-05:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCreatedSigningRoomModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
  <CreatedSigningRoomModel>
    <SigningRoomCreatedDate>2026-01-01T17:32:49.1418658-05:00</SigningRoomCreatedDate>
    <SigningRoomId>1</SigningRoomId>
    <SigningRoomName>sample string 2</SigningRoomName>
  </CreatedSigningRoomModel>
  <CreatedSigningRoomModel>
    <SigningRoomCreatedDate>2026-01-01T17:32:49.1418658-05:00</SigningRoomCreatedDate>
    <SigningRoomId>1</SigningRoomId>
    <SigningRoomName>sample string 2</SigningRoomName>
  </CreatedSigningRoomModel>
</ArrayOfCreatedSigningRoomModel>