currentUserUpdate

Graphql fields and variables for the currentUserUpdate mutation

Update the profile of the current user

Scope required: standard:write

For a complete list of input attributes see the CurrentUserAttributes type

mutation currentUserUpdate ($attributes: CurrentUserAttributes!) {
  currentUserUpdate (attributes: $attributes) {
      entityId
      errors
      firstName
      lastName
      profile {
        phone
        tabnameIsSubdomain
        timezone
        title
      }
  }
}

Arguments

{
  "attributes": {
    "profile": {
      "phone": "",
      "title": "",
      "timezone": "",
      "tabnameIsSubdomain": true
    },
    "firstName": "",
    "lastName": "",
    "entityId": "456123"
  }
}
Name
Type
Description

Response

Name
Type
Description

entityId

ID

errors

List (String)

firstName

String

lastName

String

Last updated

Was this helpful?