# Retrieve all available chart types and their supported axis configurations Retrieves all available chart types and their supported axis configurations for creating chart-based custom reports. ## Endpoint `GET /dcapi/reports/customReports/availableCharts` ## Request ### Request URL `https://{serverurl}/dcapi/reports/customReports/availableCharts` `{serverurl}`: [OAuth authentication endpoint domain](https://www.manageengine.com/products/desktop-central/help/api/cloud/oauth-authentication-endpoint-domain.html) ### Scope `DesktopCentralCloud.CustomReport.READ` ### Header `Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52` ### Request Parameters #### Request Headers - **Accept** (string, Mandatory): `application/availableCharts.v1+json` ### Sample Request ```curl curl --request GET \ --url https://appdomains/dcapi/reports/customReports/availableCharts \ --header 'Accept: application/availableCharts.v1+json' \ --header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52' ``` ## Response Parameters ### HTTP 200 Response Body: `application/json` - JSON Object - **availableCharts** (JSON Array): Array of chart type objects with their axis configurations ### HTTP 401 Response Body: `application/json` - JSON Object - **errorCode** (long): Unauthorized error code: credentials missing, expired, or invalid - **errorMsg** (string): Authentication failure reason ### HTTP 403 Response Body: `application/json` - JSON Object - **errorCode** (long): Error code indicating insufficient permissions - **errorMsg** (string): Message indicating insufficient privileges to access this resource ### HTTP 417 Response Body: `application/json` - JSON Object - **errorCode** (string): Expectation failed error code: Custom Report V2 is not enabled - **errorMessage** (string): Message indicating Custom Report V2 feature is not active ### HTTP 429 Response Body: `application/json` - JSON Object - **errorCode** (long): Rate limit error code returned when the API call reached threshold - **errorMsg** (string): Rate limit exceeded message with retry guidance ### Possible Response Codes - `200` - `401` - `403` - `417` - `429` ### Sample Response: HTTP 200 All available chart types with axis configurations ```json { "availableCharts": [ { "displayName": "Bar Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "bar" }, { "displayName": "Line Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "line" }, { "displayName": "Area Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "area" }, { "displayName": "Pie Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "pie" }, { "displayName": "Dial Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "dial" }, { "displayName": "Pyramid Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "pyramid" }, { "displayName": "Funnel Chart", "axisSupported": [ "xAxis", "yAxis" ], "chartType": "funnel" } ] } ``` ### Sample Response: HTTP 401 Missing or invalid authentication token ```json { "errorMessage": "Authentication token is missing or invalid", "errorCode": "401" } ``` ### Sample Response: HTTP 403 User does not have the required role ```json { "errorMessage": "User does not have the required role to access this resource", "errorCode": "403" } ``` ### Sample Response: HTTP 417 Custom Report V2 is not enabled ```json { "errorMessage": "Custom Report V2 is not enabled", "errorCode": "417" } ``` ### Sample Response: HTTP 429 Rate limit exceeded ```json { "errorMessage": "Rate limit exceeded. Please retry after some time", "errorCode": "429" } ``` ## Rate Limit **Duration:** 1 minute | **Threshold:** 30 | **Lock period:** 5 minutes Duration - Time window for the threshold. Threshold - Number of API calls allowed within the specified duration. Lock Period - Wait time before consecutive API requests.