Skip to main content
GET
/
api
/
r2r
/
v3
/
users
/
{id}
Get user details
curl --request GET \
  --url https://api.intelligence.io.solutions/api/r2r/v3/users/{id} \
  --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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://io.net/docs/llms.txt

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

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The user’s unique identifier

Response

200

results
object