PUT
/
envelope
/
{envelope_id}
/
attachments
/
settings
Set envelope attachment settings
curl --request PUT \
  --url https://restapi.sign.plus/v2/envelope/{envelope_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>"
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

envelope_id
string
required

Body

application/json
settings
object
required

Response

200 - application/json

Attachment settings set successfully

settings
object
recipients
object[]