The "deletewellmicroseismic" web service deletes an individual well microseismic.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/microseismics/{microseismicuniqueid} with the DELETE method.
where
datasourcetype: type of a datasource, i.e. mongo, s3, etc.
datasource: unique id of a datasource
microseismicuniqueid: a unique id of a well microseismic
Here is an example response. This response has been formatted to improve readability
{
"from": {
"actor": "akka://DefaultActorSystemControllerActorSystem:DeleteMicroseismicByUniqueIdJsonActor:DeleteMicroseismicByUniqueIdResponse for DeleteMicroseismicByUniqueIdRequest:DeleteMicroseismicByUniqueIdRequest{klass=AbstractMicroseismicUpdater, sourceType=mongo, sourceName=c9db3458-6698-49d9-ae8f-f407ce26ae2e, uniqueId=547ba28b-5e90-48a8-941a-0bc20904b23b}"
},
"isDeleted": true,
"links": [
{
"rel": "Fracking Stage",
"name": "Fracking Stage",
"relEntity": "v1/schema/int/frackingstage",
"href": "/ivaap/api/ds/mongo/v1/sources/c9db3458-6698-49d9-ae8f-f407ce26ae2e/frackingstages/547ba28b-5e90-48a8-941a-0bc20904b23b",
"children": true,
"hasProjectEntityChildren": false,
"isProjectEntity": false
}
]
}
The isDeleted entry identifies whether a well microseismic has been deleted.
The links section provides a HATEOAS link to the "Well Fracking Stage Data Web Service (v3)" service.
If the specified microseismicuniqueid doesn't match a valid well microseismic, no JSON response will be provided. The HTTP response will only show a "InvalidUniqueId" (error 404) in its headers.
The content of this web service is pluggable so that information specific to your data format can be included. To add your own content, extend the com.interactive.ivaapapi.json.AbstractJsonBuilder class.