Delete Jobs

delete

/essbase/rest/v1/jobs/purge

Deletes jobs data based on query parameters.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK

Purge request executed successfully.

500 Response

Internal Server Error.

503 Response

Service Unavailable

Naming exception or server exception.

Back to Top

Examples

The following example shows how to delete an Essbase job.

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

This example purges the listing of all jobs that had successful status (200) against the Rating cube in the Facility application.

call properties.bat
curl -X DELETE "https://myserver.example.com:9001/essbase/rest/v1/jobs/purge?application=Facility&database=Rating&jobstatus=200" -H "accept:application/json" -u %User%:%Password%
Back to Top