Send Fax

post/fax/send

Creates and sends a new Fax with the submitted file(s)

Securityapi_key
Request
Request Body schema:
required
recipient
required
string

Recipient of the fax Can be a phone number in E.164 format or email address

sender
string

Fax Send From Sender (used only with fax number)

files
Array of strings <binary>

Use files[] to indicate the uploaded file(s) to fax

This endpoint requires either files or file_urls[], but not both.

file_urls
Array of strings

Use file_urls[] to have Dropbox Fax download the file(s) to fax

This endpoint requires either files or file_urls[], but not both.

test_mode
boolean
Default: false

API Test Mode Setting

cover_page_to
string

Fax cover page recipient information

cover_page_from
string

Fax cover page sender information

cover_page_message
string

Fax Cover Page Message

title
string

Fax Title

Responses
200

successful operation

4XX

failed_operation

Request samples
{
  • "files": [
    ],
  • "test_mode": "true",
  • "recipient": "16690000001",
  • "sender": "16690000000",
  • "cover_page_to": "Jill Fax",
  • "cover_page_message": "I'm sending you a fax!",
  • "cover_page_from": "Faxer Faxerson",
  • "title": "This is what the fax is about!"
}
Response samples
application/json
{
  • "fax": {
    }
}