POST api/AI/moditorthresholdInfo

Request Information

URI Parameters

None.

Body Parameters

ThresholdInfo
NameDescriptionTypeAdditional information
id

string

None.

moitorsiteid

string

None.

thresholddetails

Collection of ThresholdDetails

None.

optype

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "id": "sample string 1",
  "moitorsiteid": "sample string 2",
  "thresholddetails": [
    {
      "indicator": "sample string 1",
      "cptype": 1,
      "value": 1.1
    },
    {
      "indicator": "sample string 1",
      "cptype": 1,
      "value": 1.1
    }
  ],
  "optype": 3
}

application/xml, text/xml

Sample:
<ThresholdInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShannxiWlwAPI.Models.AI">
  <id>sample string 1</id>
  <moitorsiteid>sample string 2</moitorsiteid>
  <optype>3</optype>
  <thresholddetails>
    <ThresholdDetails>
      <cptype>1</cptype>
      <indicator>sample string 1</indicator>
      <value>1.1</value>
    </ThresholdDetails>
    <ThresholdDetails>
      <cptype>1</cptype>
      <indicator>sample string 1</indicator>
      <value>1.1</value>
    </ThresholdDetails>
  </thresholddetails>
</ThresholdInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.