import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.conferences.actions.stop('id');
console.log(response.data);{
"data": {
"result": "ok"
}
}Stop audio being played to all or some participants on a conference call.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.conferences.actions.stop('id');
console.log(response.data);{
"data": {
"result": "ok"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Uniquely identifies the conference by id or name
List of call control ids identifying participants the audio file should stop be played to. If not given, the audio will be stoped to the entire conference.
Region where the conference data is located. Defaults to the region defined in user's data locality settings (Europe or US).
Australia, Europe, Middle East, US "US"
Was this page helpful?