v1

latestOpenAPI 3.0.3Apache 2.02026-07-2685172326.0 KB
Users

List users in the organization

List users in the caller's organization, optionally filtered by email address.

get/admin/users

Query parameters

emailstring email

Case-insensitive filter on the user's email address. Malformed email returns 400 INVALID_ARGUMENT.

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 users. Role bindings are not included; use GET /admin/role-bindings to list them.

Example response

{
  "data": [
    {
      "email": "alice@example.com",
      "id": "e2e92523-85dc-4142-b8c2-e681be8b78df",
      "name": "Alice Example"
    }
  ],
  "pagination": {
    "next": "eyJsYXN0X2lkIjoiZTJlOTI1MjMifQ=="
  }
}