ws.async » delete(url,body,output)
Description
This command is similar to its
ws
counterpart, except for the asynchronous HTTP invocation and response handling.
This command sends a HTTP DELETE request to perform delete operation with the given url
and body
(request payload).
The response will be saved to output
. To learn about how to manipulate the response returned from the target URL,
visit HTTP Response.
Parameters
- url - the target URL.
- body - the payload to be sent to target endpoint. If not required, use
(empty)
to denote no payload to be sent. - output - the file to save the request and response information