Delete Layout

delete

/essbase/rest/v1/applications/{application}/databases/{database}/layouts/{layout}

Deletes the layout in the specified cube.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

204 Response

OK

Layout deleted successfully.

400 Response

Bad Request

Failed to delete layout.

Back to Top

Examples

The following example shows how to delete an Essbase named layout associated with the 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/Sample/databases/Basic/layouts/Q1ColaSalesNY?links=none" -H Accept:application/json -H Content-Type:application/json -u %User%:%Password%
Back to Top