Invites
Invite a user to the organization
Invite a user to the organization by email and grant their initial role bindings.
post/admin/invites
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Request body
Example request
{
"email": "newhire@acme.com",
"role_bindings": [
{
"resource_type": "project",
"role": "ProjectOwner"
}
]
}Response
Invite created and email sent. The invite's role bindings are first-class; view or change them through the role-binding endpoints.
Example response
{
"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"
}