PATCH makes a PATCH request
(endpoint string, body []byte, queryParams map[string]string)
| 149 | |
| 150 | // PATCH makes a PATCH request |
| 151 | func (c *APIClient) PATCH(endpoint string, body []byte, queryParams map[string]string) (*APIResponse, error) { |
| 152 | return c.Request("PATCH", endpoint, body, queryParams) |
| 153 | } |
| 154 | |
| 155 | func (c *APIClient) log(msg string) { |
| 156 | if c.Logger != nil { |