Forward a Fax
POST
/api/faxes/:id/forward
Required Scope: faxes:write
Emails the fax PDF as an attachment to up to 20 recipients. An optional message is included in the email body.
Example Request
curl -X POST https://api.eldonfax.com/api/faxes/fax_abc123/forward \
-H "Authorization: Bearer sk_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"emails": ["records@clinic.org"],
"message": "Patient intake fax"
}'