Box Sign enables senders to provide an additional layer of security for their signature requests and reusable templates. You can require signers to verify their identity through CAC/PIV smart card authentication, SMS multifactor authentication, or Box account login. A password can be added alongside any of these verification methods for an extra layer of protection.Documentation Index
Fetch the complete documentation index at: https://developer.box.com/llms.txt
Use this file to discover all available pages before exploring further.

You can add the additional layer of security in a template or when
you create a signature request.
Verification method (recommended)
Theverification_method property on the signer object provides a unified
way to configure signer verification when you create a sign request. This
approach is recommended for new integrations because it uses a consistent
structure across all verification types. Set the type field to specify
which method to use.
Supported types:
| Type | Description |
|---|---|
cac_piv | Requires the signer to verify with a CAC/PIV smart card. |
phone | Requires the signer to complete SMS verification. Include the phone_number field. |
login | Requires the signer to log in to their Box account before signing. |
verification_method
property on each signer shows which verification method is set. A null
value means the signer doesn’t need to complete verification.
If you set both
verification_method and a legacy verification property
(such as login_required or verification_phone_number) on the same
signer, verification_method takes precedence. The API ignores the
legacy property.CAC/PIV smart card verification
To require a signer to verify their identity with a CAC/PIV smart card, setverification_method on the signer to { "type": "cac_piv" }.
If the sign request has multiple signers, you must provide a signing
order when using
cac_piv as the verification method. For a single
signer, signing order is not required.cURL
SMS verification
To require SMS verification, setverification_method on the signer to
{ "type": "phone", "phone_number": "<phone_number>" }. The phone number
must include a country code, prefixed with either + or 00
(for example, +15551232190 or 0015551232190).
cURL
Login verification
To require the signer to log in to their Box account before signing, setverification_method on the signer to { "type": "login" }. This is the
recommended alternative to the login_required parameter.
cURL
Password verification
You can require the signer to use a password to open the signature request by passing thepassword parameter in the signer object. For example:

As the password verification is done on the first step, it prevents the
signer from accessing the document until the correct password is provided.
SMS verification (legacy)
You can also configure SMS verification using theverification_phone_number parameter on the signer object. This approach
is fully supported, but for new integrations we recommend using
verification_method instead for a consistent experience across all
verification types.
To require the signer to complete SMS verification, pass the
verification_phone_number parameter along with their phone number.
For example:


By default, SMS verification is required at the signing step, which means
the signer can view the document before completing the verification. To
require SMS verification before the signer can view the document, set the
is_phone_verification_required_to_view parameter to true when creating
the sign request.