MCPcopy Create free account
hub / github.com/cronitorio/cronitor-cli / DELETE

Method DELETE

lib/api_client.go:146–148  ·  view source on GitHub ↗

DELETE makes a DELETE request

(endpoint string, body []byte, queryParams map[string]string)

Source from the content-addressed store, hash-verified

144
145// DELETE makes a DELETE request
146func (c *APIClient) DELETE(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {
147 return c.Request("DELETE", endpoint, body, queryParams)
148}
149
150// PATCH makes a PATCH request
151func (c *APIClient) PATCH(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) {

Calls 1

RequestMethod · 0.95