Delete Global Datasource
delete
/essbase/rest/v1/datasources/{datasourceName}
Deletes the named global-level Datasource.
Request
Path Parameters
-
datasourceName(required): string
Datasource name.
Response
204 Response
No Content
Datasource was deleted successfully.
400 Response
Bad Request
Failed to delete Datasource.
Examples
The following example shows how to delete a global Datasource.
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/datasources/EssbaseDS" -H Accept:application/json -u %User%:%Password%