Bulk Import Users
Bulk import users from CSV or SCIM.
Quick Navigation
Endpoint
POST /api/v1/users/bulk-import
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Content-Type | Yes | application/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.