---
title: "List invites"
method: GET
path: "/admin/invites"
tags: ["Invites"]
---

# List invites

`GET /admin/invites`

List pending and expired invites in the caller's organization.

## Query parameters

- `limit` integer
- `paginationToken` string

## Headers

- `X-Pinecone-Api-Version` string, required

## Response `200`

A paginated list of pending and expired invites; processed and deleted invites are excluded. To view an invite's role bindings, call `GET /admin/role-bindings` with `principal_type=invite` as a filter.

- InviteList — A paginated list of invites in the organization.
  - `data` Invite[], required — The page of invites.
    - `id` string, uuid, required — The unique ID of the invite.
    - `email` string, email, required — The email address the invite was sent to.
    - `status` string, required — The lifecycle status of an invite. Possible values: `pending`, `expired`, `processed`. List endpoints return only `pending` and `expired` invites; `processed` is returned only when fetching a single invite by ID.
    - `expires_at` string, date-time, nullable — When the invite expires if not accepted. Default TTL is 7 days. Resending the invite extends this to now plus 7 days. `null` if the invite does not expire.
    - `processed_at` string, date-time, nullable — The date and time the invite was accepted. `null` or omitted while the invite is still pending or expired.
    - `created_at` string, date-time, required — The date and time the invite was created.
  - `pagination` object, nullable — Pagination metadata for list responses. When `next` is present, pass it as `paginationToken` on the following request.
    - `next` string — Opaque cursor for the next page. Do not parse or construct. Invalid or expired tokens return `400`.

## Other responses

- `400` — Bad request. The request body included invalid request parameters.
- `401` — Unauthorized. Possible causes: Invalid API key.
- `403` — Forbidden
- `500` — Internal server error.
- `4XX` — Unexpected error on request.

---

[API](https://skmtc.dev/pinecone/apis/pinecone-admin-api.md) · [All operations](https://skmtc.dev/pinecone/apis/pinecone-admin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pinecone/pinecone-admin-api/revisions/8210e9d414c2/schema)
