Put makes a PUT request with the given URL, params, and optionally deserializes.
func (
r *Client) Put(ctx context.Context,
path string,
params interface{},
res interface{},
opts ...option.RequestOption
) errorPut makes a PUT request with the given URL, params, and optionally deserializes to a response. See [Execute] documentation on the params and response.
| Name | Type | Description |
|---|---|---|
ctx* | context.Context | |
path* | string | |
params* | interface{} | |
res* | interface{} | |
opts* | ...option.RequestOption |