Skip to main content
GET
/
organisations
/
{orgId}
/
users
/
{userId}
curl -X GET https://api.voxmind.ai/organisations/42/users/1001 \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
{
  "id": 1001,
  "org_id": 42,
  "external_id": "user_98765",
  "is_active": true,
  "created_at": "2025-02-10T09:15:00Z",
  "updated_at": "2025-02-10T09:15:00Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.voxmind.ai/llms.txt

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

Path Parameters

orgId
string
required
Your organisation’s unique identifier.
userId
string
required
Voxmind’s internal numeric ID for the user. Note: this is the Voxmind-assigned id, not your external_id. If you only have the external_id, use the List Users endpoint with filter=external_id=YOUR_ID to find the corresponding Voxmind user record.
curl -X GET https://api.voxmind.ai/organisations/42/users/1001 \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
{
  "id": 1001,
  "org_id": 42,
  "external_id": "user_98765",
  "is_active": true,
  "created_at": "2025-02-10T09:15:00Z",
  "updated_at": "2025-02-10T09:15:00Z"
}