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": "fecd461f-a522-4080-b329-d4106b28e74a", "dataSourceId": "bafc31b8-2ed8-4328-9de1-4aac9bbc7fe7", "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>fecd461f-a522-4080-b329-d4106b28e74a</ChartId> <DataSourceId>bafc31b8-2ed8-4328-9de1-4aac9bbc7fe7</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>