Dropbox Sign/signatureRequestUpdate

Preview only · details below

Dropbox SignDropbox Sign eSignature API

POST/signature_request/update/{signature_request_id}

Update Signature Request

Updates the email address and/or the name for a given signer on a signature request. You can listen for the `signature_request_email_bounce` event on your app or account to detect bounced emails, and respond with this method. Updating the email address of a signer will generate a new `signature_id` value. **NOTE:** This action cannot be performed on a signature request with an appended signature page.

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
signatureRequestUpdate
Server
https://api.hellosign.com/v3
Authentication
api_key, oauth2

Request parameters

signature_request_id

pathstringrequired

The id of the SignatureRequest to update.

fa5c8a0b0f492d768749333ad6fcc214c111e967

Request body

SignatureRequestUpdateRequestrequired

Content-Type: application/json

Properties: email_addressnamesignature_idexpires_at

{
  "email_address": "developer@example.com",
  "name": "Example Name",
  "signature_id": "example-signature-id",
  "expires_at": 0
}

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"
    }
  ]
}