asterisk / node-ari-client

Node.js client for ARI. This library is best effort with limited support.
Other
250 stars 98 forks source link

adding multiple channels to a bridge #65

Closed timeens closed 7 years ago

timeens commented 7 years ago

How to add multiple channels by sending only one request.

"channel (string) - Ids of channels to add to bridge" -> Cannot add multiple channels using a comma separated string.

chadxz commented 7 years ago

which api are you trying to use?

samuelg commented 7 years ago

The library method supports passing an array:

bridge.addChannel({ channel: ['id1', 'id2'] });

Hope that helps.