import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.operatorConnect.actions.refresh();
console.log(response.message);{
"success": true,
"message": "Operator connect refresh already in progress"
}This endpoint will make an asynchronous request to refresh the Operator Connect integration with Microsoft Teams for the current user. This will create new external connections on the user’s account if needed, and/or report the integration results as log messages.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.operatorConnect.actions.refresh();
console.log(response.message);{
"success": true,
"message": "Operator connect refresh already in progress"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?