List invite tokens
Lists previously-created invites along with their consumed state. Each row
exposes its raw token (e.g. ABCDE-FGHJK) — tokens are non-secret
signup codes, used as the natural id by GET /invites/{token} and
DELETE /invites/{token}.
Authorization: Requires the system-level can_create_organization permission.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Maximum number of items to return. Use -1 or omit to return all results. Valid values: -1 (all results) or 1–100.
-1 <= x <= 500Number of items to skip before starting to return results
x >= 0Response
List of invites retrieved successfully
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}.
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.
ISO 8601 timestamp at which the invite expires. On POST /invites,
defaults to now + 30 days; server caps at now + 90 days. Immutable
thereafter.
Email of the system admin who created the invite.
ISO 8601 timestamp indicating when the invite was created.
ISO 8601 timestamp indicating when the invite was redeemed (null if unconsumed).
Email of the user who redeemed the invite (null if unconsumed).
Name of the organization created on redemption (null if unconsumed).