Dropbox Sign/signatureRequestSendWithTemplate

Preview only · details below

Dropbox SignDropbox Sign eSignature API

POST/signature_request/send_with_template

Send with Template

Creates and sends a new SignatureRequest based off of the Template(s) specified with the `template_ids` parameter.

Manage accounts, signature requests, templates, teams, bulk sends, file downloads, fax, and event callbacks through the complete Dropbox Sign v3 API; the Hub provides documentation and a local SDK/CLI only.

Request

operationId
signatureRequestSendWithTemplate
Server
https://api.hellosign.com/v3
Authentication
api_key, oauth2

Request parameters

No URL, query, or header parameters.

Request body

SignatureRequestSendWithTemplateRequestrequired

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

Properties: template_idsallow_declineccsclient_idcustom_fieldsfilesfile_urlsis_eidmessagemetadatasignerssigning_optionssigning_redirect_urlsubjecttest_modetitle

{
  "template_ids": [
    {}
  ],
  "allow_decline": false,
  "ccs": [
    {
      "email_address": "developer@example.com"
    }
  ],
  "client_id": "example-client-id",
  "custom_fields": [
    {
      "name": "Example Name",
      "required": false
    }
  ],
  "files": [
    {}
  ],
  "file_urls": [
    "https://example.com/resource"
  ],
  "is_eid": false
}

Responses

200

SignatureRequestGetResponseapplication/json

successful operation

Properties: signature_requestwarnings

4XX

ErrorResponseapplication/json

failed_operation

Properties: error

{
  "signature_request": {
    "test_mode": false,
    "signature_request_id": "example-signature-request-id",
    "requester_email_address": "developer@example.com",
    "title": "Example document",
    "original_title": "Example document",
    "subject": "Example document",
    "message": "Example message",
    "metadata": {}
  },
  "warnings": [
    {
      "warning_name": "Example Name"
    }
  ]
}