POST api/monitor/claveSura

Request Information

URI Parameters

None.

Body Parameters

MonitorReq
NameDescriptionTypeAdditional information
startDate

date

None.

endDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "startDate": "2026-01-12T07:24:29.1916409-05:00",
  "endDate": "2026-01-12T07:24:29.1916409-05:00"
}

application/xml, text/xml

Sample:
<MonitorReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ingeneo.Chattigo.WebAPI.Controllers">
  <endDate>2026-01-12T07:24:29.1916409-05:00</endDate>
  <startDate>2026-01-12T07:24:29.1916409-05:00</startDate>
</MonitorReq>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'MonitorReq'.

Response Information

Resource Description

MonitorRes
NameDescriptionTypeAdditional information
status

boolean

None.

records

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": true,
  "records": 2
}

application/xml, text/xml

Sample:
<MonitorRes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ingeneo.Chattigo.WebAPI.Controllers">
  <records>2</records>
  <status>true</status>
</MonitorRes>