PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
PINECONE_INVITE_ID="9c8e3528-b9c0-4358-84ce-84c28e91b566"
curl -X POST "https://api.pinecone.io/admin/invites/$PINECONE_INVITE_ID/resend" \
-H "X-Pinecone-Api-Version: 2026-04" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN"
{
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"email": "newhire@acme.com",
"status": "pending",
"expires_at": "2026-05-28T20:14:00Z",
"processed_at": null,
"created_at": "2026-04-14T20:00:00Z"
}
Resend an invite email
Resend the invite email and extend expires_at by 7 days.
Resending an expired invite is allowed: it extends expires_at by 7 days from now, returning the invite to pending.
Resending an already-accepted (processed) invite returns 409 (see shared conflict response).
Limited to 100 invite emails per hour per organization. Returns 429 when exceeded.
Repeat requests may send another email and extend expiry again.
Role bindings are not included. Use GET /admin/role-bindings with principal_type and principal_id to list them.
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
PINECONE_INVITE_ID="9c8e3528-b9c0-4358-84ce-84c28e91b566"
curl -X POST "https://api.pinecone.io/admin/invites/$PINECONE_INVITE_ID/resend" \
-H "X-Pinecone-Api-Version: 2026-04" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN"
{
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"email": "newhire@acme.com",
"status": "pending",
"expires_at": "2026-05-28T20:14:00Z",
"processed_at": null,
"created_at": "2026-04-14T20:00:00Z"
}
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
PINECONE_INVITE_ID="9c8e3528-b9c0-4358-84ce-84c28e91b566"
curl -X POST "https://api.pinecone.io/admin/invites/$PINECONE_INVITE_ID/resend" \
-H "X-Pinecone-Api-Version: 2026-04" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN"
{
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"email": "newhire@acme.com",
"status": "pending",
"expires_at": "2026-05-28T20:14:00Z",
"processed_at": null,
"created_at": "2026-04-14T20:00:00Z"
}
Authorizations
An access token must be provided in the Authorization header using the Bearer scheme.
Headers
Required date-based version header
Path Parameters
Invite ID
Response
Invite resent successfully.
An invitation to join the organization.
The unique ID of the invite.
The email address the invite was sent to.
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.
"pending"
The date and time the invite was created.
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.
The date and time the invite was accepted. null or omitted while the invite is still pending or expired.
Was this page helpful?