POST api/dashboard/hide_Setting/{tabType}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tabType | string |
Required |
Body Parameters
Collection of HideChartModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ChartId | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| Hide | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"chartId": "d8a939c5-e85d-4e01-b526-2e5103be5213",
"title": "sample string 2",
"hide": true
},
{
"chartId": "d8a939c5-e85d-4e01-b526-2e5103be5213",
"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>d8a939c5-e85d-4e01-b526-2e5103be5213</ChartId>
<Hide>true</Hide>
<Title>sample string 2</Title>
</HideChartModel>
<HideChartModel>
<ChartId>d8a939c5-e85d-4e01-b526-2e5103be5213</ChartId>
<Hide>true</Hide>
<Title>sample string 2</Title>
</HideChartModel>
</ArrayOfHideChartModel>
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>