Create Outbound Fax
Create a new Fax request
GET or POST Request
Method 1 - HTTP Post of file1=url, file2=url
curl -X POST https://v1.api19.com/fax/create \
-d "destination=3035551212" \
-d "file1=http://x.com/file1.jpg" \
-d "file2=http://x.com/file2.jpg" \
-d 'key=your-key'Method 2 - JSON Post of URLs
{
"key": "hfg29hg23fh23",
"source": 3038883333,
"destination": 8823321111,
"files": [
"http:\/\/example.com\/test1.jpg",
"http:\/\/example.com\/fax2.jpg"
]
}Method 3 - HTTP Multipart File Post
HTTP Post Variables Supported
HTTP Call Back
Last updated