Short answer: Sign in as an Admin, go to Manage → Departments → Add New, fill the form, and click Save. See full details below.
Use this article if you need to create, rename, or reconfigure a department so calls reach the right team. Common examples include adding Sales, Support, or Billing groups during onboarding.
Tip: The mobile steps mirror the web UI but menus appear at the bottom.
Developers can automate department creation via REST:
curl -X POST "https://api.myoperator.com/v1/departments" \ -H "Authorization: Bearer <YOUR_API_KEY>" \ -H "Content-Type: application/json" \ -d '{ "name": "Support", "extension": "103", "manager_id": "u_123", "users": ["u_123", "u_124"], "ring_time": 25 }'Expected 201 response:
{ "id": "d_987", "status": "created"}Symptom | Cause | Fix |
“Extension already exists.” | Duplicate number | Choose a unique 3–5‑digit extension. |
Manager not found in dropdown | Manager user not created | Create user under Users first. |
Department limit reached | Plan cap hit | Delete old departments or upgrade plan. |
Calls ring more than 25 s | Custom ring time set too high | Lower ring time in Callflow Settings. |
HTTP Status | Meaning | Action |
400 | Validation failed | Check required fields. |
401 | Invalid API key | Regenerate key in Developer tab. |
409 | Extension conflict | Use another extension. |
If you still need help, contact our 24×7 chat from the panel footer or email support@myoperator.com with the department ID.