PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X GET "https://api.pinecone.io/admin/invites" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "X-Pinecone-Api-Version: 2026-04"
{
"data": [
{
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"email": "newhire@acme.com",
"status": "pending",
"expires_at": "2026-05-21T03:00:00Z",
"processed_at": null,
"created_at": "2026-04-14T20:00:00Z"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiOWM4ZTM1MjgifQ=="
}
}
List invites
List invites in the caller’s organization. Results are paginated. Returns pending and expired invites (processed and deleted invites are excluded); use status to distinguish pending from expired. See query parameters for cursor rules.
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"
curl -X GET "https://api.pinecone.io/admin/invites" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "X-Pinecone-Api-Version: 2026-04"
{
"data": [
{
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"email": "newhire@acme.com",
"status": "pending",
"expires_at": "2026-05-21T03:00:00Z",
"processed_at": null,
"created_at": "2026-04-14T20:00:00Z"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiOWM4ZTM1MjgifQ=="
}
}
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X GET "https://api.pinecone.io/admin/invites" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "X-Pinecone-Api-Version: 2026-04"
{
"data": [
{
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"email": "newhire@acme.com",
"status": "pending",
"expires_at": "2026-05-21T03:00:00Z",
"processed_at": null,
"created_at": "2026-04-14T20:00:00Z"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiOWM4ZTM1MjgifQ=="
}
}
Authorizations
An access token must be provided in the Authorization header using the Bearer scheme.
Headers
Required date-based version header
Query Parameters
The number of results to return per page. When omitted, the server defaults to 100. Out-of-range values return 400 OUT_OF_RANGE.
1 <= x <= 100Cursor from pagination.next of a prior response. Must be reused with the same query context (path parameters, filters, and limit).
Response
A paginated list of invites.
Was this page helpful?