func()

in entity.go [160:167]


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

	return err
}