Sign in

List faxes in date range

documented

List faxes within a date/time window (supports paging and filters).

GET faxesFaxesno 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/faxes" \
  -G \
  -u '{{PHAXIO_API_KEY}}:{{PHAXIO_SECRET}}' \
  -H "Accept: application/json" \
  -d 'created_before={{$created_before}}' \
  -d 'created_after={{$created_after}}' \
  -d 'direction={{$direction}}' \
  -d 'status={{$status}}' \
  -d 'phone_number={{$phone_number}}' \
  -d 'tag[{{$tag_name}}]={{$tag_value}}' \
  -d 'page={{$page}}' \
  -d 'limit={{$limit}}'