Dropbox Sign/faxSend

仅预览 · 原因见下方

Dropbox SignDropbox Sign 电子签名 API

POST/fax/send

发送传真

使用提交的文件创建并发送新传真

通过完整的 Dropbox Sign v3 API 管理账户、签名请求、模板、团队、批量发送、文件下载、传真和事件回调;Hub 仅提供文档与本地 SDK/CLI。

请求

operationId
faxSend
服务器
https://api.hellosign.com/v3
认证
api_key, oauth2

请求参数

无 URL、查询或 Header 参数。

Body 参数

FaxSendRequest必填

Content-Type: application/json, multipart/form-data

字段: recipientsenderfilesfile_urlstest_modecover_page_tocover_page_fromcover_page_messagetitle

{
  "recipient": "recipient@example.com",
  "sender": "sender@example.com",
  "files": [
    {}
  ],
  "file_urls": [
    "https://example.com/resource"
  ],
  "test_mode": false,
  "cover_page_to": "Recipient Name",
  "cover_page_from": "Sender Name",
  "cover_page_message": "Please find the attached documents."
}

响应

200

FaxGetResponseapplication/json

成功响应

字段: faxwarnings

4XX

ErrorResponseapplication/json

操作失败

字段: error

{
  "fax": {
    "fax_id": "example-fax-id",
    "title": "Example document",
    "original_title": "Example document",
    "subject": "Example document",
    "message": "Example message",
    "metadata": {},
    "created_at": 0
  },
  "warnings": [
    {
      "warning_name": "Example Name"
    }
  ]
}