Delete a Virtual Mosaic
delete
{server}/georaster/v1/{datasource}/vm/{virtualMosaicName}
Delete the virtual mosaic with the specified name.
Request
Path Parameters
-
virtualMosaicName(required): string
The name of the virtual mosaic
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Return the name of the deleted virtual mosaic.
401 Response
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"
} ]
}