OBJECT

OrganizationInvite

An invitation to join a developer organization under a given role.

link GraphQL Schema definition

1type OrganizationInvite {
2
3# When the invitation was created.
4createdAt: Time!
5
6# The date and time the invite will expire.
7expiresAt: Time!
8
9# The invites's unique identifier.
10id: ID!
11
12# User the invitation if for.
13invitee: User
14
15# User who created the invitation.
16inviter: User
17
18# ID of the organization the invitation is for.
19organizationID: ID!
20
21# Name of the organization the invitation is for.
22organizationName: String!
23
24# Role the invitation is for.
25role: OrganizationMemberRole!
26
27}