Guides

Invited profiles

🚧

This Request is Protected by Authentication

The Invited Profiles GraphQL endpoint is accessible only to authenticated users and allows you to retrieve information about profiles that have been invited. This endpoint provides details about who sent the invitation, the profile that was minted, and when the invitation occurred.

Invocation

const result = await client.invites.invitedProfiles();
fragment InvitedResult on InvitedResult {
  by
  profileMinted {
    ...Profile
  }
  when
}

query InvitedProfiles() {
  invitedProfiles {
    ...InvitedResult
  }
}

Response

InvitedResult