Category / Section
How to allow signers to reassign the document using API?
Published:
2 mins read
When sending documents for signatures via BoldSign, you might encounter scenarios where a signer wishes to reassign the document to another person. BoldSign provides a feature that allows signers to reassign the document to someone else.
Enable signer’s ability to reassign the document
When you want to allow signers to reassign documents, include the EnableReassign
property set to true
in your send
API call.
Here are code examples demonstrating how to achieve this:
Code snippet
curl -X 'POST' \ 'https://api.boldsign.com/v1/document/send' \
-H 'accept: application/json' \
-H 'X-API-KEY: {your API key}' \
-H 'Content-Type: multipart/form-data' \
-F 'EnableReassign= true' \
-F 'Message=' \
-F 'Signers={
"name": "Hanky",
"emailAddress": "hankyWhites@cubeflakes.com",
"signerType": "Signer",
"formFields": [
{
"id": "string",
"name": "string",
"fieldType": "Signature",
"pageNumber": 1,
"bounds": {
"x": 50,
"y": 50,
"width": 1,
"height": 1
},
"isRequired": true
}
],
"locale": "EN"
}' \
-F 'Files={your file}' \
-F 'Title={title}' \
By setting the EnableReassign
property to true, you ensure that signers have the option to reassign the document to another person. Make sure to execute the above code and provide the necessary fields such as Files
, Title
, and Signers
. This approach allows signers to reassign the document as needed.