INPUT_OBJECT

CreateUserInput

Input data for user creation.

link GraphQL Schema definition

1input CreateUserInput {
4
2# First name.
3firstName: String!
7
5# Last name.
6lastName: String!
10
8# Email address.
9email: String!
13
11# A list of work phone numbers.
12workPhones: [String]
16
14# User's work started date.
15employmentStartDate: Date
19
17# Short info about the user.
18aboutMe: String
22
20# Gender.
21gender: Gender
25
23# ID of the user's manager.
24managerId: ID
28
26# Nationality.
27nationality: String
31
29# List of IDs of teams user belongs to.
30teamIds: [ID]
34
32# Position ID.
33positionId: ID
37
35# Location ID.
36locationId: ID
40
38# Date of birth.
39birthDate: Date
43
41# Personal phone number.
42personalPhone: String
46
44# Personal email address
45personalEmail: String
49
47# Address.
48address: PersonalAddressInput
52
50# List of social accounts.
51socialAccounts: [SocialAccountInput]
55
53# List of user's custom field values.
54customFieldValues: [UserCustomFieldValueInput]
56}