List faxes in date range
documentedList faxes in a date range.
GET 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.1/faxes" \
-G \
-u '{{PHAXIO_API_KEY}}:{{PHAXIO_API_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[order_id]={{$tag_order_id}}' \
-d 'page={{$page}}' \
-d 'per_page={{$per_page}}'