Skip to main content
GET
Get Invite With Event
This endpoint retrieves both invitation details and information about the associated event in a single call. It’s perfect for creating attendee-facing interfaces where you need to show both the invitation and event information. What it does:
  • Fetches an invitation and its associated event details in one request
  • Can find the invitation using either a session ID or invite ID
  • Returns comprehensive information about both the invitation and the event
When to use it:
  • When building user-facing invitation portals
  • For creating digital tickets that show event details
  • When displaying “Your Invitations” screens in an app
  • To get complete context about an invitation and its event

Query Parameters

You must provide either session_id or invite_id, but not necessarily both.

Response

The API returns a response object containing the invite details and its associated event information:
Efficiency note: This endpoint combines what would otherwise be two separate API calls (getting invite details and getting event details), making your application more efficient and providing a better user experience.

Authorizations

x-api-key
string
header
required

API key authentication. Add your API key as the value of the 'x-api-key' header.

Query Parameters

session_id
string | null
invite_id
string | null

Response

Successful Response

invite
Invite · object
required
event
Event · object | null