List Members
Add Member
Response (200):
Remove Member
Impact on Visibility
When an operator is added to a department, they can see:- Conversations assigned to their department
- Unassigned conversations (without any department)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage department members
GET /backend/departments/{id}/members
{
"data": [
{
"id": "uuid",
"department_id": "uuid",
"user_id": "uuid",
"user_name": "John Smith",
"user_email": "john@example.com",
"created_at": "2024-01-15T10:00:00Z"
}
]
}
POST /backend/departments/{id}/members
{
"user_id": "550e8400-e29b-41d4-a716-446655440000"
}
| Field | Type | Required | Description |
|---|---|---|---|
user_id | UUID | Yes | User ID to add |
{
"message": "Member added successfully"
}
DELETE /backend/departments/{id}/members/{userId}