in httputil/httputil.go [174:176]
func (client *Client) Delete(url string, headers map[string]string, payload []byte) (responseCode int, body []byte, err error) {
return client.issueRequest(OperationDelete, url, headers, bytes.NewBuffer(payload))
}