Refresh a fax
POST/faxes/:id/actions/refresh
Refreshes the inbound fax's media_url when it has expired
Request
Path Parameters
id uuidrequired
The unique identifier of a fax.
Responses
200: Refresh fax response
- application/json
404: Fax does not exist
default: Unexpected error
- application/json
Request samples
curl -L -X POST 'https://api.telnyx.com/v2/faxes/:id/actions/refresh' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": {
"result": "ok"
}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}