Send fax
documentedCreate and queue a fax for sending (legacy v2).
POST faxesFaxesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.phaxio.com/v2/faxes" \
-X POST \
-u '{{PHAXIO_API_KEY}}:{{PHAXIO_SECRET}}' \
-H "Accept: application/json" \
-F 'to={{$to}}' \
-F 'content_url={{$content_url}}' \
-F 'header_text={{$header_text}}' \
-F 'caller_id={{$caller_id}}' \
-F 'callback_url={{$callback_url}}' \
-F 'batch_delay={{$batch_delay}}' \
-F 'batch_collision_avoidance={{$batch_collision_avoidance}}' \
-F 'cancel_timeout={{$cancel_timeout}}' \
-F 'tag[order_id]={{$order_id}}' \
-F 'test_fail={{$test_fail}}' \
# Phaxio v2 API - POST /faxes (Create and send a fax). Authentication via HTTP Basic (API key/secret). See docs for details. \
# Base URL: https://api.phaxio.com/v2/