Sign in

Receive fax callback

documented

Endpoint to receive inbound fax callbacks from Phaxio when a fax is received.

POST faxes/receive_callbackFaxesno implementation yet0 runs
No 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.1/faxes/receive_callback" \
  -X POST \
  -u "{{PHAXIO_API_KEY}}:{{PHAXIO_SECRET}}" \
  -H "Accept: application/json" \
  -F 'file=@{{$pdf_path}}' \
  -F 'fax={"id":{{$fax_id}},"from":"{{$from}}","to":"{{$to}}","pages":{{$pages}},"direction":"received"}' \
  -F 'success={{$success}}' \
  -F 'is_test={{$is_test}}' \
  -F 'direction={{$direction}}' \
  -F 'metadata={{$metadata}}'
Receive fax callback · Phaxio · OpenIntegrations