GraphQL INPUT_OBJECT

UpdateUserAccountInput

Input for update user account.

link Definition

  • input UpdateUserAccountInput {
  • # Unique ID of the office for whom the user account is intended.
  • officeId: Int
  • # Unique ID of the department for whom the user account is intended.
  • departmentId: Int
  • # Unique ID of the security policy for whom the user account.
  • securityPolicyId: Int
  • # Unique ID of the user role. Defines how information in the CA is displayed to
  • # the user based on the user's business role.
  • startupUserRoleId: Int
  • # Status of the user account
  • status: UserAccountStatusEnum
  • # Set to true if this user account needs to change password.
  • mustChangePassword: Boolean
  • # Additional client ids the user has access to.
  • additionalClientIds: [Int!]
  • # Privilege sets that are assigned to the user.
  • privilegeSetIds: [Int!]
  • # Unique sso email of the user account.
  • ssoEmail: String
  • # Unique ID of the user.
  • id: Int!
  • # Contact information for the user account.
  • contact: UpdateUserAccountContactInput
  • # Username of the user account.
  • userName: String
  • # Password to access the user account.
  • password: String
  • }

link Required by