Skip to main content

Bulk Import Users

Bulk import users from CSV or SCIM.

Quick Navigation
Outline

Endpoint

POST /api/v1/users/bulk-import

Headers

HeaderRequiredDescription
AuthorizationYesBearer <access_token>
Content-TypeYesapplication/json

Request Body

{
"file_url": "https://example.com/users.csv",
"format": "csv",
"organization_id": 1
}

Response

Success (200)

{
"success": true,
"data": {
"import_id": "import_123",
"total_rows": 100,
"processed": 0,
"status": "processing",
"message": "Users imported successfully"
},
"message": "Users imported successfully"
}

Features

  • CSV/SCIM import
  • Batch processing
  • Error handling
  • Progress tracking

Status

[WARNING] TODO: Not Implemented

This endpoint is defined in the router but the implementation logic is not yet complete.