import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.externalConnections.uploads.refreshStatus('id');
console.log(response.success);{
"success": true
}Forces a recheck of the status of all pending Upload requests for the given external connection in the background.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.externalConnections.uploads.refreshStatus('id');
console.log(response.success);{
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Identifies the resource.
"1293384261075731499"
Successful response
Describes wether or not the operation was successful
Was this page helpful?