GraphQL INPUT_OBJECT
CreateUserAccountInput
Input for create user account.
link Definition
- input CreateUserAccountInput {
- #   Unique ID of the office for whom the user account is intended.
- : Int
- #   Unique ID of the department for whom the user account is intended.
- : Int
- #   Unique ID of the security policy for whom the user account.
- : 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.
- : Int
- #   Status of the user account
- : UserAccountStatusEnum
- #   Set to true if this user account needs to change password.
- : Boolean
- #   Additional client ids the user has access to.
- : [Int!]
- #   Privilege sets that are assigned to the user.
- : [Int!]
- #   Unique sso email of the user account.
- : String
- #   Unique ID of the user. Can only be set for server user
- : Int
- #   Contact information for the user account.
- : CreateUserAccountContactInput!
- #   Type of the user account.
- : UserAccountTypeEnum!
- #   Username of the user account.
- : String!
- #   Password to access the user account.
- : String!
- #   Number of test credit card for user account.
- : String
- #   Unique ID of the client.
- : Int
- }