INPUT_OBJECT

CreateUser

link GraphQL Schema definition

1input CreateUser {
3
2name: String!
7
4# Metadata in JSON format. If a field is provided elsewhere in the
5# payload, it does not need to be saved in jsondata.
6jsondata: JSONData
10
8# User who requested that the new user be provisioned
9requestorId: ID
14
11# Password for new user. Optional - if not provided, the user will
12# need to set on first login.
13password: String
16
15passwordHash: String
18
17organizationId: ID!
20
19sendNewUserEmail: Boolean
22
21email: String
24
23roleIds: [ID!]
26
25acls: [UserACLInput!]
29
27# Optionally, specify user's first name
28firstName: String
32
30# Optionally, specify user's last name
31lastName: String
34
33userId: ID
35}