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.
signature_id required | string The signature ID for the recipient. |
email_address | string <email> The new email address for the recipient. This will generate a new NOTE: Optional if |
name | string The new name for the recipient. NOTE: Optional if |
expires_at | integer or null The new time when the signature request will expire. Unsigned signatures will be moved to the expired status, and no longer signable. See Signature Request Expiration Date for details. |
successful operation
failed_operation
{- "email_address": "john@example.com",
- "signature_id": "2f9781e1a8e2045224d808c153c2e1d3df6f8f2f"
}
{- "signature_request": {
- "signature_request_id": "fa5c8a0b0f492d768749333ad6fcc214c111e967",
- "title": "Purchase Agreement",
- "subject": "Purchase Agreement",
- "message": "Please sign and return.",
- "created_at": 1570471067,
- "is_complete": true,
- "has_error": false,
- "custom_fields": [ ],
- "signing_url": null,
- "signing_redirect_url": null,
- "requester_email_address": "me@dropboxsign.com",
- "signatures": [
- {
- "signature_id": "78caf2a1d01cd39cea2bc1cbb340dac3",
- "signer_email_address": "danaerys@mereen.gov.ws",
- "signer_name": "Danaerys Stormborn",
- "signer_role": null,
- "order": null,
- "status_code": "awaiting_signature",
- "signed_at": null,
- "last_viewed_at": null,
- "last_reminded_at": null,
- "has_pin": false,
- "has_sms_auth": false
}
], - "cc_email_addresses": [ ]
}
}