Skip to main content
GET
/
api
/
r2r
/
v3
/
collections
/
{id}
/
users
List users in collection
curl --request GET \
  --url https://api.intelligence.io.solutions/api/r2r/v3/collections/{id}/users \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "id",
      "email": "email",
      "is_active": true,
      "is_superuser": true,
      "created_at": "2024-01-15T09:30:00Z",
      "updated_at": "2024-01-15T09:30:00Z",
      "is_verified": true,
      "collection_ids": [
        "collection_ids"
      ],
      "graph_ids": [
        "graph_ids"
      ],
      "document_ids": [
        "document_ids"
      ],
      "limits_overrides": {
        "key": "value"
      },
      "metadata": {
        "key": "value"
      },
      "verification_code_expiry": "2024-01-15T09:30:00Z",
      "name": "name",
      "bio": "bio",
      "profile_picture": "profile_picture",
      "total_size_in_bytes": 1,
      "num_files": 1,
      "account_type": "account_type",
      "hashed_password": "hashed_password",
      "google_id": "google_id",
      "github_id": "github_id"
    }
  ],
  "total_entries": 1
}
This endpoint retrieves a paginated list of users who have access to a specific collection. It supports sorting options to customize the order of returned users.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

Collection ID

Response

200

results
object[]
total_entries
integer
default:0
Example:

1

I