Skip to main content
GET
List invite tokens

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:-1

Maximum number of items to return. Use -1 or omit to return all results. Valid values: -1 (all results) or 1–100.

Required range: -1 <= x <= 500
offset
integer
default:0

Number of items to skip before starting to return results

Required range: x >= 0

Response

List of invites retrieved successfully

token
string
read-only

The invite token (e.g. ABCDE-FGHJK). Use in the redemption URL https://{signupHost}/?token={token} and as the path id for GET /invites/{token} / DELETE /invites/{token}.

boundEmail
string

Optional. If set, restricts redemption to a caller with this email (case-insensitive). Leave unset for open invites — typical for outreach campaigns. Honored on POST /invites; immutable thereafter.

expiresAt
string<date-time>

ISO 8601 timestamp at which the invite expires. On POST /invites, defaults to now + 30 days; server caps at now + 90 days. Immutable thereafter.

createdBy
string
read-only

Email of the system admin who created the invite.

createdAt
string<date-time>
read-only

ISO 8601 timestamp indicating when the invite was created.

consumedAt
string<date-time>
read-only

ISO 8601 timestamp indicating when the invite was redeemed (null if unconsumed).

consumedBy
string
read-only

Email of the user who redeemed the invite (null if unconsumed).

consumedOrganizationName
string
read-only

Name of the organization created on redemption (null if unconsumed).