OBJECT

OrganizationInvite

link GraphQL Schema definition

1type OrganizationInvite {
2
3# Unique invitation id
4id: ID!
5
6# User email
7email: String
8
9# Organization to add the user to
10organization: OrganizationBasicInfo!
11
12# Invitee
13invitee: Invitee
14
15# Message shown to the user and the approver of the invite
16message: String
17
18# List of applications and application-specific roles to grant to the user
19applicationRoles: [ApplicationInviteRole!]!
20
21# Audit history of the actions performed
22audit: [OrganizationInviteActionAudit!]!
23
24# Status of the invite
25status: OrganizationInviteStatus!
26
27# Date the invitation becomes invalid. Default is 7 days after creation
28expirationDate: DateTime!
29
30# createdBy provide info of the invitation creator
31createdBy: BasicUserInfo!
32
33}