I was trying to delete wells, and I see that if I pass the chosenID and dataSource it does delete a well but when I pass only the chosen ID then it does not delete the well is this expected? delete-wells | ComboCurve API Documentation In the documentational 3 parameters are optional.
That is the expected behavior. The endpoint will allow a user to delete wells either by id
or by a combination of dataSource
and chosenId
. A chosenId
by itself is not enough to identify a well, as it is possible for multiple wells to exist with the same chosenId
but with either a different dataSource
or scope.
1 Like
Thank you that very helpful to know.