You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// PatchUser
// Updates, via PATCH, the user with the given Id.
// string userId The Id of the user to update.
// UserActionRequest request The request that contains just the new user action information.
func (c *FusionAuthClient) PatchUser(userId string, request map[string]interface{}) (*UserResponse, *Errors, error) {
According to the documentation, the second param is supposed to be a UserActionRequest (which is defined in Domain.go), but the method takes a map[string]interface{}. I can work around it for now, but it seems there's a mix of methods that take specific request structs and others that take generic map[string]interface{}
The text was updated successfully, but these errors were encountered:
For example see the PatchUser method:
According to the documentation, the second param is supposed to be a UserActionRequest (which is defined in Domain.go), but the method takes a
map[string]interface{}
. I can work around it for now, but it seems there's a mix of methods that take specific request structs and others that take genericmap[string]interface{}
The text was updated successfully, but these errors were encountered: