PUT makes a PUT request
(endpoint string, body []byte, queryParams map[string]string)
| 139 | |
| 140 | // PUT makes a PUT request |
| 141 | func (c *APIClient) PUT(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) { |
| 142 | return c.Request("PUT", endpoint, body, queryParams) |
| 143 | } |
| 144 | |
| 145 | // DELETE makes a DELETE request |
| 146 | func (c *APIClient) DELETE(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) { |