Delete Server Property
/essbase/rest/v1/properties/{propertyName}
Deletes a Provider Services configuration property from the Essbase Server.
Request
- application/json
- application/xml
-
propertyName(required): string
Property name.
Response
- application/json
- application/xml
200 Response
Successful operation.
204 Response
Property is deleted successfully. Returns the property details and the links to get/edit the property.
400 Response
Bad Request
Failed to delete the property. The JSON for the property may be incorrect, or the specified property may have already been deleted.
415 Response
Not Acceptable
The media type isn't supported or wasn't specified.
500 Response
Internal Server Error.
Examples
The following example shows how to remove a configured Provider Services property from the Essbase Server.
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/properties/essbase.jobs.maxCount?links=none" -H Accept:application/json -H Content-Type:application/json -u %User%:%Password%