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