Delete a Virtual Mosaic

delete

{server}/georaster/v1/{datasource}/vm/{virtualMosaicName}

Delete the virtual mosaic with the specified name.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Return the name of the deleted virtual mosaic.
Body ()
Root Schema : schema
Type: object
Show Source

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to delete a virtual mosaic with name "landsatMosaic" by submitting a DELETE request using cURL.

curl -X DELETE "https://localhost:8080/oraclespatial/georaster/v1/datasource1/vm/landsatMosaic" -H "Cookie: JSESSIONID=<jsessionid_value>"

The following shows an example of the response in JSON format after the above delete request.

{
   "Deleted" : "landsatMosaic",
   "links" : [ {
     "rel" : "parent",
     "href" : "http://localhost:8080/oraclespatial/georaster/v1/datasource1/vm"
   } ]
}
Back to Top