RESTful Lifecycle Reference for Oracle WebLogic Server

Unregister A Partition

delete

/management/lifecycle/{version}/runtimes/{runtime}/partitions

The DELETE method unregisters a partition identified by name.

Roles

Admin

Request

Supported Media Types
  • application/json
Path Parameters
Query Parameters
Security
Back to Top

Response

200 Response

Back to Top

Examples

Unregistering a Partition

This example uses the DELETE method to unregister a partition.

Example Request
curl -v \ --user username:password \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X DELETE http://localhost:7001/management/lifecycle/latest/runtimes/WLSRuntime/partitions?name=SpritePartition
Example Response
HTTP/1.1 200 OK Response Body: {}
Back to Top