POST api/field/inner_range
Request Information
URI Parameters
None.
Body Parameters
InnerFilterFieldModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ChartId | globally unique identifier |
None. |
|
| DataSourceId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Title | string |
None. |
|
| DataType | FieldDataType |
None. |
|
| Granularity | FieldGranularityType |
None. |
|
| Aggregator | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"chartId": "dc14f757-c746-4d55-8319-e62edb87ac3b",
"dataSourceId": "873ccd60-a287-4330-91b8-db3cf961992c",
"name": "sample string 3",
"title": "sample string 4",
"dataType": "number",
"granularity": "normal",
"aggregator": "sample string 5"
}
application/xml, text/xml
Sample:
<InnerFilterFieldModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Controllers"> <Aggregator>sample string 5</Aggregator> <ChartId>dc14f757-c746-4d55-8319-e62edb87ac3b</ChartId> <DataSourceId>873ccd60-a287-4330-91b8-db3cf961992c</DataSourceId> <DataType>Number</DataType> <Granularity>Normal</Granularity> <Name>sample string 3</Name> <Title>sample string 4</Title> </InnerFilterFieldModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | ApiResultStatus |
None. |
|
| Data | Object |
None. |
|
| Message | string |
None. |
|
| Code | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "success",
"data": {},
"message": "sample string 2",
"code": 1
}
application/xml, text/xml
Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Models"> <Code>1</Code> <Data /> <Message>sample string 2</Message> <Status>Success</Status> </ApiResult>