updateUserDetails
DEPRECATED: Please use updateUser instead
Update the account user details of the authenticated user. Only one field can be updated per day. This prevents users from switching accounts to someone else (usually when moving homes) All account changes should be handled by operations or the move out journey. New customers are exempt from this rule for the first 31 days.
Please use the 'updateUser' mutation instead.
- Marked as deprecated on 2020-10-02.
- Scheduled for removal on or after 2023-04-06.
Arguments
Input for updating user details.
Returns
UpdateAccountUserMutationPayloadDEPRECATED: Please use updateUser instead
Update the account user details of the authenticated user. Only one field can be updated per day. This prevents users from switching accounts to someone else (usually when moving homes) All account changes should be handled by operations or the move out journey. New customers are exempt from this rule for the first 31 days.
Possible Errors
Allowed Viewers
Required Permissions
(No)Query Complexity
1Examples
mutation UpdateUserDetails($input: UpdateAccountUserMutationInput!) {
updateUserDetails(input: $input) {
clientMutationId
dateOfBirth
email
errors {
...ErrorTypeFragment
}
familyName
givenName
landline
mobile
pronouns
}
}
Variables
{
"input": UpdateAccountUserMutationInput
}
Response
{
"data": {
"updateUserDetails": {
"clientMutationId": "15645944",
"dateOfBirth": "2017-01-26",
"email": "onto-most-shake-necessary-situation",
"errors": [ErrorType],
"familyName": "Carroll",
"givenName": "Tanya",
"landline": "ground-listen-recently-until-perform",
"mobile": "black-weight-the-bring-American",
"pronouns": "region-institution-road-effect-personal"
}
}
}