DELETE api/MeasureAbnormalRanges/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MeasureAbnormalRange| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| MEASURE_ID | integer |
None. |
|
| MIN_VALUE | decimal number |
None. |
|
| MAX_VALUE | decimal number |
None. |
|
| BADGE_COLOR | string |
None. |
|
| TYPE | string |
None. |
|
| LABEL | string |
None. |
|
| CALCULATION | string |
None. |
|
| CALCULATION_PERIOD | integer |
None. |
|
| CALCULATION_PERIOD_UNIT | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"MEASURE_ID": 2,
"MIN_VALUE": 3.0,
"MAX_VALUE": 4.0,
"BADGE_COLOR": "sample string 5",
"TYPE": "sample string 6",
"LABEL": "sample string 7",
"CALCULATION": "sample string 8",
"CALCULATION_PERIOD": 1,
"CALCULATION_PERIOD_UNIT": "sample string 9"
}
application/octet-stream
Sample:
{"ID":1,"MEASURE_ID":2,"MIN_VALUE":3.0,"MAX_VALUE":4.0,"BADGE_COLOR":"sample string 5","TYPE":"sample string 6","LABEL":"sample string 7","CALCULATION":"sample string 8","CALCULATION_PERIOD":1,"CALCULATION_PERIOD_UNIT":"sample string 9"}
application/xml, text/xml
Sample:
<MeasureAbnormalRange xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ID>1</ID> <MEASURE_ID>2</MEASURE_ID> <MIN_VALUE>3</MIN_VALUE> <MAX_VALUE>4</MAX_VALUE> <BADGE_COLOR>sample string 5</BADGE_COLOR> <TYPE>sample string 6</TYPE> <LABEL>sample string 7</LABEL> <CALCULATION>sample string 8</CALCULATION> <CALCULATION_PERIOD>1</CALCULATION_PERIOD> <CALCULATION_PERIOD_UNIT>sample string 9</CALCULATION_PERIOD_UNIT> </MeasureAbnormalRange>