Skip to main content
POST
/
export
/
users
Export user usage data
curl --request POST \
  --url https://api.langdock.com/export/users \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "from": {
    "date": "2024-01-01T00:00:00.000Z",
    "timezone": "UTC"
  },
  "to": {
    "date": "2024-01-31T23:59:59.999Z",
    "timezone": "UTC"
  }
}'
{
  "success": true,
  "data": {
    "filePath": "assistants-usage/workspace-id/assistants-usage-2024-01-01-2024-01-31-abc12345.csv",
    "downloadUrl": "https://storage.example.com/signed-url",
    "dataType": "assistants",
    "recordCount": 1250,
    "dateRange": {
      "from": "2024-01-01T00:00:00.000Z",
      "to": "2024-01-31T23:59:59.999Z"
    }
  }
}
This endpoint exports user activity data including message counts, usage patterns, and feature utilization. The available data depends on your workspace privacy settings.

Privacy Considerations

The user export data is subject to workspace privacy settings, User-identifying Data may be excluded due to privacy settings. As a consequence of this some data may be anonymized based on workspace configuration.

Data Included

The user export may contain:
  • Message count per user
  • Activity patterns
  • Usage frequency
  • Feature utilization
  • Time-based usage analytics
Note: User-specific data may be excluded due to workspace privacy settings.
Additional Information: For details on prerequisites, rate limits, and export size limits, please refer to the main Usage Export API documentation.

Headers

Authorization
string
required

Body

application/json
from
object
required
to
object
required

Response

success
boolean
required
Example:
data
object
required