import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.faxes.actions.refresh('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
console.log(response.result);{
"data": {
"result": "ok"
}
}Refreshes the inbound fax’s media_url when it has expired
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.faxes.actions.refresh('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
console.log(response.result);{
"data": {
"result": "ok"
}
}Was this page helpful?