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
15organizationId: ID!
18
17sendNewUserEmail: Boolean
20
19email: String
22
21roleIds: [ID!]
24
23acls: [UserACLInput!]
27
25# Optionally, specify user's first name
26firstName: String
30
28# Optionally, specify user's last name
29lastName: String
31}