func()

in entity.go [111:118]


func (c *Client) DeleteEntity(entityID string) error {
	resp, err := c.request(http.MethodDelete, fmt.Sprintf("/entities/%s", url.PathEscape(entityID)), "application/json", nil)
	if err == nil {
		resp.Close()
	}

	return err
}