getInvitations

Will return all Invitation listed for the current Organization.

Examples

query GetInvitations {
  getInvitations {
    id
    inviteeEmail
    invitation_url
    created_at
    expires_at
  }
}

Fields

Return type: [Invitation]

You can use the following field(s) to specify what information your getInvitations query will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

id String

Unique identifier for the invitation

inviteeEmail String

Email address of the person receiving the invitation

invitation_url String

Complete URL that the invitee can use to accept the invitation

created_at String

Timestamp when this invitation was created, in ISO 8601 format

expires_at String

Timestamp when this invitation will expire, in ISO 8601 format

Last updated