MCPcopy Index your code
hub / github.com/amadeus4dev/amadeus-java / delete

Method delete

src/main/java/com/amadeus/HTTPClient.java:93–95  ·  view source on GitHub ↗

A helper module for making generic DELETE requests calls. It is used by every namespaced API DELETE method. amadeus.booking.flightOrder("eJzTd9f3NjIJdzUGAAp%2fAiY=").delete(); It can be used to make any generic API call that is automatically authenticated using

(String path, Params params)

Source from the content-addressed store, hash-verified

91 * @return a Response object containing the status code, body, and parsed data.
92 */
93 public Response delete(String path, Params params) throws ResponseException {
94 return request(HttpVerbs.DELETE, path, params, null);
95 }
96
97 /**
98 * A helper module for making generic DELETE requests calls. It is used by

Callers 3

testFlightOrdersbyIdMethod · 0.45
testDeleteWithParamsMethod · 0.45

Calls 1

requestMethod · 0.95

Tested by 3

testFlightOrdersbyIdMethod · 0.36
testDeleteWithParamsMethod · 0.36