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 # Type of invite 28 : OrganizationInviteType 29 30 # User details 31 : JSONData 32 33 # Date the invitation becomes invalid. Default is 7 days after creation 34 : DateTime! 35 36 # createdBy provide info of the invitation creator 37 : BasicUserInfo! 38 39 # Only accessible to super admins. 40 # Non-superadmin users will receive an authorization error when requesting this 41 # field. 42 : String 43 44 # Invitation link to accept the organization invite. 45 : String 46 47 }