---
title: "List pending team invitations with cursor-based pagination"
method: GET
path: "/teams/{key}/invites"
tags: ["Team Invites"]
---

# List pending team invitations with cursor-based pagination

`GET /teams/{key}/invites`

Returns pending team invitations for a specific team. Team key can be ID or slug. These are email-based invitations that have not yet been accepted.

## Path parameters

- `key` string, required — Team identifier (ID or slug)

## Query parameters

- `query` string — Search query to filter invitations by email. Case-insensitive partial match
- `limit` integer — Maximum number of invitations to return per page
- `cursor` string — Pagination cursor for fetching the next page

## Response `200`

OK

- object
  - `invites` object[], required — Array of invites for the current result set
    - `id` string, required — Unique identifier for the team invitation
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the invitation was created
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the invitation was last updated
    - `teamId` string, required — Team this invitation is for
    - `email` string, email, required — Email address of the invited user. Used for sending invitation.
    - `permissions` string[], required — Permissions the user will receive upon accepting the invitation. Can be overridden per promoter or venue.
    - `roleIds` string[] — Role IDs assigned on invite acceptance. Effective permissions are role + explicit nodes.
    - `access` object — Promoter access to apply when the invitation is accepted.
      - `promoterIds` string[], nullable, required — Null means team-wide promoter access. An array means access is restricted to those promoters.
    - `token` string, required — Secure token for invite acceptance. Required to accept the invitation.
    - `expiresAt` integer, required — Unix timestamp (seconds) for DynamoDB TTL. Invitation will be automatically deleted after 7 days.
    - `invitedBy` string, required — User ID who sent the invitation
    - `tenantId` string, required — Tenant ID for multi-tenant isolation
  - `before` string, nullable — Cursor for navigating backward in the result set. Omitted when there are no prior results.
  - `after` string, nullable — Cursor for navigating forward in the result set. Omitted when there are no subsequent results.
  - `limit` number, required — Maximum number of items to return in each result set

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/bec3de84da9e/schema)
