Actions462
- Users Actions
- Download Greeting
- Batch Delete
- Get Call Log
- Get Phone Registrars
- Reboot Phone
- Reprovision Phone
- Upgrade Phone
- Generate Prov Link
- Has Duplicated Email
- Get Duplicated Emails
- Send Welcome Email
- List Groups
- List Forwarding Profiles
- Get Phone Secret
- Regenerate
- Regenerate Passwords
- Export Extensions
- Get Phone Registrar
- Bulk Update
- Get User
- Update User
- Delete User
- List Greetings
- Make Call User Record Greeting
- Make Call
- Get Monitor Status
- Set Monitor Status
- Multi User Update
- Reprovision All Phones
- Get Multi Edit Greetings
- Multi Delete Greeting
- Get User By Number
- List User
- Create User
- Active Calls Actions
- Activity Log Actions
- Anti Hacking Settings Actions
- Backups Actions
- Black List Numbers Actions
- Blocklist Actions
- Call Cost Settings Actions
- Call Flow Apps Actions
- Call Flow Scripts Actions
- Call History View Actions
- Call Parking Settings Actions
- Call Types Settings Actions
- CDR Settings Actions
- Chat History View Actions
- Chat Log Settings Actions
- Contacts Actions
- Chat Messages History View Actions
- Codecs Settings Actions
- Conference Settings Actions
- Console Restrictions Actions
- Countries Actions
- Country Codes Actions
- CRM Integration Actions
- Crm Templates Actions
- Custom Prompts Actions
- Data Connector Settings Actions
- Defs Actions
- Device Infos Actions
- Dial Code Settings Actions
- Did Numbers Actions
- DN Properties Actions
- E 164 Settings Actions
- Email Template Actions
- Emergency Geo Locations Actions
- Fax Actions
- Fax Server Settings Actions
- Firewall Actions
- Firmwares Actions
- Fxs Actions
- General Settings For Pbx Actions
- Google Settings Actions
- Emergency Notifications Settings Actions
- Event Logs Actions
- Fxs Templates Actions
- General Settings For Apps Actions
- Groups Actions
- Holidays Actions
- Hotel Services Actions
- Microsoft 365 Integration Actions
- My Group Actions
- Inbound Rules Actions
- Last Cdr And Chat Message Timestamp Actions
- License Status Actions
- Logging Settings Actions
- Microsoft 365 Teams Integration Actions
- Music On Hold Settings Actions
- My Tokens Actions
- My User Actions
- Network Interfaces Actions
- Network Settings Actions
- Notification Settings Actions
- Office Hours Actions
- Outbound Rules Actions
- Parameters Actions
- Parkings Actions
- Peers Actions
- Phone Book Settings Actions
- Phone Logos Actions
- Phones Settings Actions
- Phone Templates Actions
- Playlists Actions
- Prompt Sets Actions
- Purge Settings Actions
- Queues Actions
- Receptionists Actions
- Report Queue Failed Callbacks Actions
- Recordings Actions
- System Status Actions
- Remote Archiving Settings Actions
- Report Abandoned Chats Statistics Actions
- Report Abandoned Queue Calls Actions
- Report Agent Login History Actions
- Report Agents In Queue Statistics Actions
- Report Audit Log Actions
- Report Average Queue Waiting Time Actions
- Report Breaches Sla Actions
- Report Call Cost By Extension Group Actions
- Report Call Distribution Actions
- Report Call Log Data Actions
- Report Detailed Queue Statistics Actions
- Report Extensions Statistics By Ring Groups Actions
- Report Extension Statistics By Group Actions
- Report Extension Statistics Actions
- Report Inbound Rules Actions
- Report Queue Agents Chat Statistics Actions
- Report Queue Agents Chat Statistics Totals Actions
- Report Queue Answered Calls By Wait Time Actions
- Report Queue An Un Calls Actions
- Report Queue Callbacks Actions
- Report Queue Chat Performance Actions
- Report Statistic Sla Actions
- Report Queue Performance Overview Actions
- Report Queue Performance Totals Actions
- Report Ring Group Statistics Actions
- Sbcs Actions
- Secure Sip Settings Actions
- Report Team Queue General Statistics Actions
- Scheduled Reports Actions
- Ring Groups Actions
- Security Tokens Actions
- Service Principals Actions
- Services Actions
- Sip Devices Actions
- Directories Actions
- Tenant Properties Actions
- Trunks Actions
- Trunk Templates Actions
- Updates Actions
- Voicemail Settings Actions
- Website Links Actions
- Report Inbound Calls Actions
- Report Outbound Calls Actions
- Report User Activity Actions
Overview
This node allows users to create a new Ring Group within the 3CX telephony system. Ring Groups are used to manage how incoming calls are distributed among a group of extensions or members, enabling efficient call handling and routing strategies.
Common scenarios for this node include:
- Setting up a team or department call group where calls ring sequentially or simultaneously.
- Configuring special routing rules for holidays, out-of-office hours, or no-answer situations.
- Enabling or disabling communication channels like chat, phone, or video for the group.
- Managing call requirements such as collecting caller name or email before connecting.
Practical example:
A customer support manager wants to create a Ring Group that rings all support agents simultaneously, enables chat and video calls, requires callers to provide both their name and email, and has specific routing for holidays and after-hours.
Properties
| Name | Meaning |
|---|---|
| Break Route | JSON object defining the call routing behavior when a break occurs in the ring group. |
| Call Us Enable Chat | Boolean to enable or disable chat functionality for the ring group. |
| Call Us Enable Phone | Boolean to enable or disable phone calls for the ring group. |
| Call Us Enable Video | Boolean to enable or disable video calls for the ring group. |
| Call Us Requirement | Option to specify caller information requirement before connecting: Both (name and email), Name only, Email only, or None. |
| Click To Call Id | String identifier for click-to-call integration associated with the ring group. |
| Forward No Answer | JSON object defining routing behavior if no one answers the call in the ring group. |
| Greeting File | String specifying the file path or identifier for the greeting audio played to callers. |
| Groups | JSON array describing groups with rights and tags associated with the ring group. |
| Holidays Route | JSON object defining call routing during holidays. |
| Id | Numeric identifier for the ring group (usually assigned by the system). |
| Is Registered | Boolean indicating whether the ring group is registered/enabled. |
| Members | JSON array listing members (extensions/users) included in the ring group. |
| Multicast Address | String specifying the multicast IP address used for paging or group calls. |
| Multicast Codec | String specifying the codec used for multicast calls. |
| Multicast Packet Time | Number indicating packet time for multicast calls. |
| Multicast Port | Number specifying the port used for multicast calls. |
| Name | String name of the ring group. |
| Number | String phone number associated with the ring group. |
| Out Of Office Route | JSON object defining call routing when the ring group is out of office. |
| Ring Strategy | Option defining how calls are distributed: Hunt (sequential), Ring All (simultaneous), or Paging. |
| Ring Time | Number of seconds the phone rings before moving to the next step (e.g., forwarding). |
| Transcription Mode | Option specifying transcription settings: Nothing, Voicemail, Recordings, Both, or Inherit from system defaults. |
Output
The node outputs JSON data representing the newly created Ring Group object as returned by the 3CX API. This includes all properties set during creation along with any additional metadata or identifiers assigned by the system.
If binary data were involved (e.g., audio files), it would be handled separately, but this operation focuses on JSON data.
Dependencies
- Requires an active connection to a 3CX telephony system via its API.
- Needs an API authentication token or OAuth2 credential configured in n8n to authorize requests.
- The base URL of the 3CX server must be provided in credentials.
- The node uses HTTP requests to communicate with the 3CX API endpoint
/xapi/v1.
Troubleshooting
- Invalid JSON in properties: Several properties expect JSON input (e.g., Break Route, Forward No Answer). Ensure valid JSON syntax to avoid parsing errors.
- Authentication errors: If the API key or OAuth2 token is missing or invalid, the node will fail to authenticate. Verify credentials configuration.
- Missing required fields: Properties like
NameandNumberare essential; omitting them may cause API errors. - Incorrect routing objects: Routing properties must follow the expected structure defined by 3CX; incorrect formats can lead to failed requests.
- Network issues: Connectivity problems to the 3CX server will prevent successful API calls.