Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 708 Bytes

rest.delete.md

File metadata and controls

24 lines (18 loc) · 708 Bytes

rest.delete

The delete function is established to call a restAPI with delete method. Its return is null or a JSON object.

Sample

var ret = rest.delete("http://localhost:8080/restSample/efwRestAPI/customer/u001");

API

CallingReturning
rest . delete ( apiUrl )null or JSON
rest . delete ( apiUrl , heads )null or JSON
ParametersTypeDescription
apiUrlStringThe url for the called rest api.
headsJSON ObjectThe additional request heads.