Resend a fax

Operation

resendFax

Request Parameters

Name Type Description
id int A fax ID of a previously sent fax
api_key string Your api key
api_secret string Your api secret

Response

A JSON object with success, message, and data attributes. The data field contains the fax ID of the newly resent fax.

Sample Call

curl https://api.phaxio.com/v1/resendFax \
    -F 'id=123456' \
    -F 'api_key=API_KEY' \
    -F 'api_secret=API_SECRET'

Sample Response

{
    "success": true,
    "message": "Fax queued for resend",
    "data": {
        "faxId": 1234
    }
}

Restrictions

Phaxio can only resend faxes that have files stored on our platform. The resend operation will fail if you have long term file storage disabled or deleted files for a given fax.