The "deletewellboresection" web service deletes an individual well bore section.
A typical URL is http://myserver.mycompany.com:8080/INTGeoServer/api/ds/{datasourcetype}/v1/sources/{datasource}/wbsections/{sectionuniqueid} with the DELETE method.
where
datasourcetype: type of a datasource, i.e. mongo, s3, etc.
datasource: unique id of a datasource
sectionuniqueid: a unique id of a well bore section
Here is an example response. This response has been formatted to improve readability
{
"from": {
"actor": "akka://DefaultActorSystemControllerActorSystem:DeleteWellBoreSectionByUniqueIdJsonActor:DeleteWellBoreSectionByUniqueIdResponse for DeleteWellBoreSectionByUniqueIdRequest:DeleteWellBoreSectionByUniqueIdRequest{klass=AbstractWellBoreSectionUpdater, sourceType=mongo, sourceName=c9db3458-6698-49d9-ae8f-f407ce26ae2e, uniqueId=765e7a8c-3387-4f5b-bc68-7c80058a9310}"
},
"isDeleted": true
}
The isDeleted entry identifies whether a well bore section has been deleted.
If the specified sectionuniqueid doesn't match a valid well bore section, 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.