POST api/dashboard/hide_Setting/{tabType}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tabType | string |
Required |
Body Parameters
Collection of HideChartModelName | Description | Type | Additional information |
---|---|---|---|
ChartId | globally unique identifier |
None. |
|
Title | string |
None. |
|
Hide | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[ { "chartId": "dd118aa6-804a-4c54-87fd-b32921f68481", "title": "sample string 2", "hide": true }, { "chartId": "dd118aa6-804a-4c54-87fd-b32921f68481", "title": "sample string 2", "hide": true } ]
application/xml, text/xml
Sample:
<ArrayOfHideChartModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Models"> <HideChartModel> <ChartId>dd118aa6-804a-4c54-87fd-b32921f68481</ChartId> <Hide>true</Hide> <Title>sample string 2</Title> </HideChartModel> <HideChartModel> <ChartId>dd118aa6-804a-4c54-87fd-b32921f68481</ChartId> <Hide>true</Hide> <Title>sample string 2</Title> </HideChartModel> </ArrayOfHideChartModel>
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>