Skip to main content
POST
/
operator_connect
/
actions
/
refresh
JavaScript
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successful response

success
boolean

Describes wether or not the operation was successful

Example:

true

message
string

A message describing the result of the operation

Example:

"Operator connect refresh already in progress"