Delete This Server

delete

/management/weblogic/{version}/edit/servers/{name}

Delete this server.

Request

Path Parameters
Header Parameters
  • The 'X-Requested-By' header is used to protect against Cross-Site Request Forgery (CSRF) attacks. The value is an arbitrary name such as 'MyClient'.
Security
  • Type: basic
    Description: A user in the Admin security role.
Back to Top

Response

200 Response

Back to Top

Examples

Delete this server.

This example uses the DELETE method to remove this server.

Example Request
curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X DELETE http://localhost:7001/management/weblogic/latest/edit/servers/server1
Example Response
HTTP/1.1 200 OK

Response Body:
{}
Back to Top