Invites
List invites
List pending and expired invites in the caller's organization.
get/admin/invites
Query parameters
limitinteger
The number of results to return per page. When omitted, the server defaults to 100. Out-of-range values return 400 OUT_OF_RANGE.
paginationTokenstring
Cursor from pagination.next of a prior response. Must be reused with the same query context (path parameters, filters, and limit).
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Response
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.
Example response
{
"data": [
{
"created_at": "2026-04-14T20:00:00.000Z",
"email": "newhire@acme.com",
"expires_at": "2026-05-21T03:00:00.000Z",
"id": "9c8e3528-b9c0-4358-84ce-84c28e91b566",
"processed_at": null,
"status": "pending"
}
],
"pagination": {
"next": "eyJsYXN0X2lkIjoiOWM4ZTM1MjgifQ=="
}
}