Skip to content

Instantly share code, notes, and snippets.

@daguar
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daguar/ee3533a74c5c9f210675 to your computer and use it in GitHub Desktop.
Save daguar/ee3533a74c5c9f210675 to your computer and use it in GitHub Desktop.
Phaxio example: sending a fax of multiple files with curl
curl https://api.phaxio.com/v1/send \
-F 'to=4141234567' \
-F 'filename[]=@/path/to/file1.png' \
-F 'filename[]=@/path/to/file2.png' \
-F 'api_key=API_KEY' \
-F 'api_secret=API_SECRET'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment