We’ve upgraded to the latest version of Wazo; 19.15.
One issue that we’re coming across is that there’s no ring back when somebody calls us. They just get silence until we answer the call.
In the past, we’ve been told that this is because we have “Music on Hold” set to something under Ring Groups. The issue is that the new UI does NOT allow us to blank out this option. In other words, a blank is not an option for the dropdown so it seems to be impossible to correct this.
Then, go to http://<your_ip>/api/, paste the token wazo-auth-cli gave you in the token textbox at the top right of the page and navigate to the wazo-confd API from the menu on the left.
Navigate to the groups section, click on it and find the PUT /groups/{group_id} endpoint.
Then, take the ID from the URL of the group you want to change from wazo-ui (i.e https://<your_ip>/engine/groups/ID?bc_names[]=Groups&bc_urls[]=%2Fengine%2Fgroups%2F&bc_icons[]=users) and copy-paste the ID in the group_id field of the API page.
Then you want the following body:
{
"music_on_hold": null
}
Click on the Try it out button and you should get a no content204 response.
Thank you so much for the tip.
When I go to http://192.168.1.187/api/ and enter in the token it gives me the message: failed to parse JSON/YAML response
When I click on the wazo-confd link and then enter in the token, it gives me the message: Can't read from server. It may not have the appropriate access-control-origin settings.
I forgot to tell you! Please open the link to the wazo-confd API in a new tab and accept the certificate. wazo uses a self-signed certificate internally.