Skip to main content
GET
/
v1
/
public
/
organization
/
users
List organization users
curl --request GET \
  --url https://api.poelis.com/v1/public/organization/users \
  --header 'Authorization: Bearer <token>'
{
  "count": 1,
  "items": [
    {
      "email": "jane.doe@example.com",
      "id": "auth0|550e8400-e29b-41d4-a716-446655440000",
      "name": "Jane Doe",
      "org_role": "admin",
      "productAccess": [
        {
          "product_id": "660e8400-e29b-41d4-a716-446655440000",
          "product_name": "Jet Engine Specifications",
          "role": "viewer",
          "workspace_id": "550e8400-e29b-41d4-a716-446655440000"
        }
      ],
      "workspaceAccess": [
        {
          "role": "editor",
          "workspace_id": "550e8400-e29b-41d4-a716-446655440000",
          "workspace_name": "Aerospace Engineering"
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.poelis.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key. Example: Bearer poelis_api_...

Query Parameters

q
string

Optional search query to filter results.

limit
integer
default:50

Maximum number of items to return per page. Must be between 1 and 200.

Required range: 1 <= x <= 200
offset
integer
default:0

Number of items to skip from the beginning of the result set. Used for pagination.

Required range: x >= 0

Response

Paginated list of users with their full role details

Response payload for listing users with access rights.

items
PublicUserAccessEntry · object[]
required

List of users with their access rights

count
integer
required

Total number of users matching the query