curl --request PUT \
--url https://restapi.sign.plus/v2/template/{template_id}/attachments/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"settings": {
"visible_to_recipients": true
}
}
'{
"settings": {
"visible_to_recipients": true
},
"recipients": [
{
"recipient_id": "<string>",
"recipient_name": "<string>",
"placeholders": [
{
"recipient_id": "<string>",
"id": "<string>",
"name": "<string>",
"hint": "<string>",
"required": true,
"multiple": true,
"files": [
{
"id": "<string>",
"name": "<string>",
"size": 123,
"mimetype": "<string>"
}
]
}
]
}
]
}curl --request PUT \
--url https://restapi.sign.plus/v2/template/{template_id}/attachments/settings \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"settings": {
"visible_to_recipients": true
}
}
'{
"settings": {
"visible_to_recipients": true
},
"recipients": [
{
"recipient_id": "<string>",
"recipient_name": "<string>",
"placeholders": [
{
"recipient_id": "<string>",
"id": "<string>",
"name": "<string>",
"hint": "<string>",
"required": true,
"multiple": true,
"files": [
{
"id": "<string>",
"name": "<string>",
"size": 123,
"mimetype": "<string>"
}
]
}
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Attachment settings set successfully
Show child attributes
ID of the recipient
Name of the recipient
Show child attributes
ID of the recipient
ID of the attachment placeholder
Name of the attachment placeholder
Hint of the attachment placeholder
Whether the attachment placeholder is required
Whether the attachment placeholder can have multiple files