---
title: "Get invite details"
method: GET
path: "/admin/invites/{invite_id}"
tags: ["Invites"]
---

# Get invite details

`GET /admin/invites/{invite_id}`

Get an invite in the caller's organization by ID.

## Path parameters

- `invite_id` string, uuid, required

## Headers

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

## Response `200`

The invite details. To view this invite's role bindings, call `GET /admin/role-bindings` with `principal_type=invite` as a filter.

- Invite — An invitation to join the organization.
  - `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.

## Other responses

- `401` — Unauthorized. Possible causes: Invalid API key.
- `403` — Forbidden
- `404` — Not found
- `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)
