Delete one or more application elements
This method can accept a JSON array containing JSON ID strings, a JSON array containing application JSON objects with 'id' properties, a single JSON ID string, or a single JSON object with an 'id' property.
Request
DELETE http://{hostname}:{port}
/applications/
Content-Type: application/json
Parameter | Type | Required | Description |
---|---|---|---|
Content-Type | application/json |
true |
Example
curl -k -u jsmith:passwd
"http://myserver.example.com:8080/applications/"
-X DELETE -H 'Content-Type: application/json' -d @appsToDelete.json
Example JSON request
[
{
"id": "885042b6-bae5-447b-95b7-88c7cacdfa5f"
},
{
"id": "a49ff308-4991-40b5-a977-e0d735a5bd8f"
},
{
"id": "f29ab237-bc44-4495-8eeb-84cb480ee9d4"
}
]