Skip to main content
API version 2024.0 Creates a Box Sign request object.
This resource has a few variations that can be encountered when using the API.The fields that are part of the base variant represent the default fields that are always returned when using the fields query parameter, additional to the fields specified in the parameter.
are_reminders_enabled
boolean
example: trueReminds signers to sign a document on day 3, 8, 13 and 18. Reminders are only sent to outstanding signers.
are_text_signatures_enabled
boolean
example: trueDisables the usage of signatures generated by typing (text).
days_valid
integer
example: 2Set the number of days after which the created signature request will automatically expire if not completed. By default, we do not apply any expiration date on signature requests, and the signature request does not expire.
declined_redirect_url
string
example: https://declined-redirect.comThe uri that a signer will be redirected to after declining to sign a document.
email_message
string
example: Hello! Please sign the document belowMessage to include in sign request email. The field is cleaned through sanitization of specific characters. However, some html tags are allowed. Links included in the message are also converted to hyperlinks in the email. The message may contain the following html tags including a, abbr, acronym, b, blockquote, code, em, i, ul, li, ol, and strong. Be aware that when the text to html ratio is too high, the email may end up in spam filters. Custom styles on these tags are not allowed. If this field is not passed, a default message will be used.
email_subject
string
example: Sign Request from AcmeSubject of sign request email. This is cleaned by sign request. If this field is not passed, a default subject will be used.
external_id
string
example: 123This can be used to reference an ID in an external system that the sign request is related to.
external_system_name
string
example: BoxUsed as an optional system name to appear in the signature log next to the signers who have been assigned the embed_url_external_id.
is_document_preparation_needed
boolean
example: trueIndicates if the sender should receive a prepare_url in the response to complete document preparation using the UI.
name
string
example: nameName of the signature request.
parent_folder
Folder (Mini)object
The destination folder to place final, signed document and signing log. Only ID and type fields are required. The root folder, folder ID 0, cannot be used and can also not be null.When this value is not passed in when the signature request, then we will use a default folder which is either the parent folder of the first source file in the payload if we have the permission to upload to that folder or a folder called “My Sign Requests”.
prefill_tags
object[]
When a document contains sign-related tags in the content, you can prefill them using this prefill_tags by referencing the ‘id’ of the tag as the external_id field of the prefill tag.
redirect_url
string
example: https://www.example.comWhen specified, the signature request will be redirected to this url when a document is signed.
signature_color
string
example: blueForce a specific color for the signature (blue, black, or red).Value is one of blue,black,red
signers
object[]
Array of signers for the signature request. 35 is the max number of signers permitted.Note: It may happen that some signers belong to conflicting segments (user groups). This means that due to the security policies, users are assigned to segments to prevent exchanges or communication that could lead to ethical conflicts. In such a case, an attempt to send the sign request will result in an error.Read more about segments and ethical walls.
source_files
File (Base)array
List of files to create a signing document from. This is currently limited to ten files. Only the ID and type fields are required for each file.
template_id
string
example: 123075213-af2c8822-3ef2-4952-8557-52d69c2fe9cbWhen a signature request is created from a template this field will indicate the id of that template.
{
  "are_reminders_enabled": true,
  "are_text_signatures_enabled": true,
  "days_valid": 2,
  "declined_redirect_url": "https://declined-redirect.com",
  "email_message": "Hello! Please sign the document below",
  "email_subject": "Sign Request from Acme",
  "external_id": "123",
  "external_system_name": "Box",
  "is_document_preparation_needed": true,
  "name": "name",
  "prefill_tags": [
    {
      "checkbox_value": true,
      "date_value": "2021-04-26",
      "document_tag_id": "1234",
      "text_value": "text"
    }
  ],
  "redirect_url": "https://www.example.com",
  "template_id": "123075213-af2c8822-3ef2-4952-8557-52d69c2fe9cb"
}