POST api/field/inner_range
Request Information
URI Parameters
None.
Body Parameters
InnerFilterFieldModelName | 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": "7a5e1983-7441-478c-92d0-d23690e637d1", "dataSourceId": "c28a4b3b-19fb-4cb4-8b6c-98b8d7e250ab", "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>7a5e1983-7441-478c-92d0-d23690e637d1</ChartId> <DataSourceId>c28a4b3b-19fb-4cb4-8b6c-98b8d7e250ab</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
ApiResultName | 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>