Delete Drill Through Report

delete

/essbase/rest/v1/applications/{applicationName}/databases/{databaseName}/reports/{name}

Deletes the specified drill through report from the specified application and database. To delete a drill through report definition, you must be a Database Manager or higher.

Request

Path Parameters
Back to Top

Response

Supported Media Types

204 Response

No Content

The drill through report was deleted successfully.

400 Response

Bad Request

Failed to delete the drill through report. The report name may be incorrect.

500 Response

Internal Server Error.

Back to Top

Examples

The following example shows how to delete a drill through report definition from the Essbase cube.

This example uses cURL to access the REST API from a Windows shell script. The calling user's ID and password are variables whose values are set in properties.bat.

Script with cURL Command

call properties.bat
curl -X DELETE "https://myserver.example.com:9001/essbase/rest/v1/applications/SampleDtr/databases/Basic/reports/drill3" -H Accept:application/json -H Content-Type:application/json -u %User%:%Password%
Back to Top