---
title: "Resend an invite email"
method: POST
path: "/admin/invites/{invite_id}/resend"
tags: ["Invites"]
---

# Resend an invite email

`POST /admin/invites/{invite_id}/resend`

Resend the invite email and extend its expiration to 7 days from now; limited to 100 emails per hour per organization.

## Path parameters

- `invite_id` string, uuid, required

## Headers

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

## Response `200`

Invite resent successfully. The invite returns to a pending status and its expiration is extended to 7 days from now.

- 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
- `409` — Conflict. The request conflicts with the persisted state of the resource. Common causes include invariant violations (e.g., removing the last `OrgOwner`), lifecycle-state mismatches (e.g., resending an invite that is not pending), and constraint violations checked against persisted data.
- `429` — Rate limit exceeded. The org has sent the maximum number of invite emails for the current hour.
- `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)
