Jump to content

Camp call


dtassone

Recommended Posts

We ended up making our own.

First disable call waiting on all phones if you want.

Our version gives camper voice guide instead of busy response. 

Basically we set the busy response in all device call flows to give camper voice guide and collect DTMF for triggering campon.. 

Once the campon is triggered our go script checks the channels every 5 seconds for presence of the busy number. If it is not busy then a quick call is triggered between the two devices.

This works really well but its kinda hacky and continuously checking the channels will put a load on the server depending on how many people have activated the featurea t the same time.

@mc_  I was wondering if there is a way of checking busy status of on-net or any number dialed through quickcall or some other mechanism in the api. Something like  the ability to read the 486 code in the response to an unsuccessful call due to number being busy . 

Link to comment
Share on other sites

  • 2600Hz Employees

You can configure the "children" to branch based on the SIP response code. From memory but something like:

{
  "flow": {
    "module":"resources",
    "data":{...},
    "children":{
      "sip:486":{
        "module":"menu"...
      }
    }
  }
}

 

Link to comment
Share on other sites

×
×
  • Create New...