Deletes a raster history log entry

delete

/spatialviewer/api/v1/raster/historyLogs/{historyLogId}

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

successful request
Body ()
Root Schema : RemoveRasterHistoryLogsSuccessResponse
Type: object
Show Source
Nested Schema : response
Type: object
Response details
Show Source

304 Response

History log not found
Back to Top

Examples

Deletes a raster history log entry.

The following example shows how to delete a raster history entry by submitting a DELETE request on the REST resource using cURL.

curl -X DELETE "http://localhost:8045/spatialviewer/api/v1/raster/historyLogs/Raster_process-1534350957071" -H "accept: application/json"

Example of Response Header

Example of Response Header

HTTP/1.1 200 OK Date: Tue, 21 Aug 2018 23:01:11 GMT Content-Type: application/json Access-Control-Allow-Origin: * Access-Control-Allow-Credentials: true Access-Control-Allow-Methods: GET, POST, DELETE, PUT Access-Control-Allow-Headers: Content-Type, Accept Transfer-Encoding: chunked

Example of the Response Body

The following example shows the contents of the response body in JSON format

{ "status" : "success", "title" : "History log as been removed successfully.", "o:successCode" : "SVR-00207", "response" : { "message" : "History log as been removed successfully" }}
Back to Top