CreatedUser
No description
type CreatedUser {
id: String!
firstName: String!
lastName: String!
mobile: String!
email: String!
isEmailValidated: Boolean!
role: UserRole!
status: UserStatus!
site: Site
language: Language!
integrator: Integrator
distributor: Distributor
isTwoFactorEnabled: Boolean!
isAccountManagerContact: Boolean
isSalesContact: Boolean
isTechnicalContact: Boolean
isBillingContact: Boolean
permissions: [Permission!]!
origin: UserOrigin!
deviceConfigTemplates: [DeviceConfigTemplate!]!
createdAt: DateTime!
updatedAt: DateTime!
password: String!
}
Fields
CreatedUser.id
● String!
non-null scalar
The ID of the user
CreatedUser.firstName
● String!
non-null scalar
The first name of the user
CreatedUser.lastName
● String!
non-null scalar
The last name of the user
CreatedUser.mobile
● String!
non-null scalar
The phone number of the user
CreatedUser.email
● String!
non-null scalar
Email of the user
CreatedUser.isEmailValidated
● Boolean!
non-null scalar
Whether the email of the user has been validated
CreatedUser.role
● UserRole!
non-null enum
The role of the user
CreatedUser.status
● UserStatus!
non-null enum
The status of the user : PENDING, ACTIVE, BLOCKED, DELETED
CreatedUser.site
● Site
object
The site of the user
CreatedUser.language
● Language!
non-null enum
CreatedUser.integrator
● Integrator
object
The integrator of the user
CreatedUser.distributor
● Distributor
object
The distributor of the user
CreatedUser.isTwoFactorEnabled
● Boolean!
non-null scalar
Whether the user has enabled 2FA
CreatedUser.isAccountManagerContact
● Boolean
scalar
Whether the user is account manager contact
CreatedUser.isSalesContact
● Boolean
scalar
Whether the user is sales contact
CreatedUser.isTechnicalContact
● Boolean
scalar
Whether the user is technical contact
CreatedUser.isBillingContact
● Boolean
scalar
Whether the user is billing contact
CreatedUser.permissions
● [Permission!]!
non-null enum
The permissions of the user
CreatedUser.origin
● UserOrigin!
non-null enum
The origin of the user : APPLICATION, SYSTEM
CreatedUser.deviceConfigTemplates
● [DeviceConfigTemplate!]!
non-null object
The device config templates of the user
CreatedUser.createdAt
● DateTime!
non-null scalar
The date of creation of the user
CreatedUser.updatedAt
● DateTime!
non-null scalar
The date of the last update of the user
CreatedUser.password
● String!
non-null scalar
The password of the user
Returned By
addUser
mutation