POST api/SuraMonitoreo/SaveMultipleMonitoring

Request Information

URI Parameters

None.

Body Parameters

SaveRequest
NameDescriptionTypeAdditional information
Id

string

None.

Phone

string

None.

ResponseTime

string

None.

SessionId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Phone": "sample string 2",
  "ResponseTime": "sample string 3",
  "SessionId": "sample string 4"
}

application/xml, text/xml

Sample:
<SuraMonitoreoController.SaveRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ingeneo.Chattigo.WebAPI.Controllers">
  <Id>sample string 1</Id>
  <Phone>sample string 2</Phone>
  <ResponseTime>sample string 3</ResponseTime>
  <SessionId>sample string 4</SessionId>
</SuraMonitoreoController.SaveRequest>

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 'SaveRequest'.

Response Information

Resource Description

ResponseGenericDto
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResponseGenericDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ingeneo.Chattigo.BusinessLogic.Sura.Monitoreo.Dto">
  <Data />
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
</ResponseGenericDto>