Delete Grid Layout
delete
/essbase/rest/v1/applications/{application}/databases/{database}/layouts/{layout}
Deletes the layout in the specified cube.
Request
Path Parameters
-
application(required): string
Application name.
-
database(required): string
Database name.
-
layout(required): string
Layout name.
Query Parameters
-
user: string
User name.
Response
Supported Media Types
- application/json
- application/xml
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%