Delete Grid Layout
delete
/applications/{application}/databases/{database}/layouts/{layout}
Deletes the layout in the specified cube.
Request
Path Parameters
-
application(required):
Application name.
-
database(required):
Database name.
-
layout(required):
Layout name.
Query Parameters
-
user:
Username.
Response
204 Response
OK
Layout deleted successfully.
400 Response
Bad Request
Failed to delete layout.
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%