INPUT_OBJECT

CreateOrganizationInviteInput

link GraphQL Schema definition

1input CreateOrganizationInviteInput {
4
2# Organization to add the user to
3organizationId: ID!
7
5# Invitee email address
6email: String!
10
8# Message shown to the user and the approver of the invite
9message: String
13
11# List of applications and application-specific roles to grant to the user
12applicationRoles: [ApplicationInviteRoleInput!]!
16
14# Auth group ids to assign to the invited user
15authGroupIds: [ID]
19
17# User Details to be added to the invite
18userDetails: JSONData
22
20# Boolean to disable auto approval of the invite
21disableAutoApproval: Boolean
28
23# When true, creates a request-to-join flow: invite is submitted for org admin
24# approval
25# and notifications use the self-service path. When omitted or false, creates an
26# admin-initiated invite flow.
27requestToJoinOrganization: Boolean
29}