Category / Section
Send document to multiple recipients using API
Published:
1 min read
Sending a single document to multiple recipients can be essential when you need to share the same document with various individuals. BoldSign simplifies this process by enabling you to include multiple recipients all at once.
Send a document to multiple recipients
To send a document to multiple recipients using the BoldSign API, you can follow these steps
Utilize the provided codes as an example to construct your request. The following code snippets demonstrate how to send a document with multiple signers via the API.
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 '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 'Signers=
{
"name": "Cilian",
"emailAddress": "cilianmurphy@cubeflakes.com",
"signerType": "Signer",
"formFields":
[
{
"id": "sign_1",
"name": "sign_1",
"fieldType": "Signature",
"pageNumber": 2,
"bounds": {
"x": 50,
"y": 50,
"width": 1,
"height": 1
},
"isRequired": true
}
],
"locale": "EN"
}' \
-F 'Files={your file}' \
-F 'Title={title}' \
Replace placeholders (Title
, Message
, etc.) within the snippet with your specific inputs. Adjust values in the Signers
array to match your custom recipients.
Executing this code will send the document to the specified recipients as provided in the snippet.