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