update_user¶
Operation¶
update_user
async
¶
update_user(input: UpdateUserInput, plugins: list[Plugin] | None = None) -> UpdateUserOutput
Updates a information associated with a user id.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
UpdateUserInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
UpdateUserOutput
|
An instance of |
Input¶
UpdateUserInput
dataclass
¶
Dataclass for UpdateUserInput structure.
Attributes¶
application_id
class-attribute
instance-attribute
¶
application_id: str | None = None
The identifier of the application the user is attached to.
user_aliases_to_delete
class-attribute
instance-attribute
¶
user_aliases_to_delete: list[UserAlias] | None = None
The user aliases attached to the user id that are to be deleted.
user_aliases_to_update
class-attribute
instance-attribute
¶
user_aliases_to_update: list[UserAlias] | None = None
The user aliases attached to the user id that are to be updated.
user_id
class-attribute
instance-attribute
¶
user_id: str | None = None
The email id attached to the user.
Output¶
UpdateUserOutput
dataclass
¶
Dataclass for UpdateUserOutput structure.
Attributes¶
user_aliases_added
class-attribute
instance-attribute
¶
user_aliases_added: list[UserAlias] | None = None
The user aliases that have been to be added to a user id.