Quick Sign lets you pre-fill all required fields before sending a document, so the signer only needs to review and confirm — no manual data entry. Combined with auto-generated signatures, signers can complete a document in seconds.Documentation Index
Fetch the complete documentation index at: https://docs.spitshake.io/llms.txt
Use this file to discover all available pages before exploring further.
Quick Sign modes
Set thequick_sign_mode parameter when creating a submission to control the signing experience:
| Mode | Behavior | Best for |
|---|---|---|
normal | Standard field-by-field signing. No shortcuts. | Complex documents requiring careful review. |
review_and_sign | Shows a summary of pre-filled data before signing begins. Signer reviews, then proceeds. | Documents where the signer should verify prefilled information. |
confirmation_modal | Displays a carousel modal with signature/initials fields. Signer taps through each one. Default mode. | One-click signing flows with pre-filled data. |
auto_scroll_signature | Automatically scrolls to the first signature field after the document loads. | Documents where signers just need to sign at the bottom. |
How it works
- You create a submission with pre-filled field values via the API
- SpitShake evaluates whether all required fields are satisfied
- Based on the
quick_sign_mode, the signing UI adapts:confirmation_modal: If all required fields are pre-filled, the signer sees a carousel overlay presenting each signature/initials field one at a time. They can sign with a single tap per field.auto_scroll_signature: The page scrolls directly to the first unsigned signature field.review_and_sign: A summary screen lists all pre-filled values for the signer to review before proceeding.
Auto-generated signatures
When a signer’sname is provided and auto_prefill_signatures is enabled (default: true), SpitShake automatically generates a cursive signature image from the name. The signer can accept the auto-generated signature or draw/type their own.
Auto-generated signatures are created for both signature and initials field types.
API usage
Create a Quick Sign submission
Parameters
The signing UX mode. One of:
normal, review_and_sign, confirmation_modal, auto_scroll_signature.The signer’s full name. When provided, SpitShake auto-generates a cursive signature image from this name (unless
auto_prefill_signatures is false in template preferences).Key-value pairs matching field keys defined in the template schema. Pre-fills fields before the signer opens the document.
Response
The response includes asigning_url for each submitter. When the signer opens this URL, the Quick Sign experience activates automatically based on the mode you selected.
Review fields in the carousel
You can include specific fields in the confirmation modal carousel using thereview_in_carousel preference. This is useful for fields like “Authorized Signatory” or “Title” where you want the signer to explicitly confirm (or edit) the value before signing — all within the same modal flow, with no context switching.
How it works
- Fields with
review_in_carousel: trueappear before signature/initials steps in the carousel - If the field is also editable (not readonly), the signer sees an input they can modify
- If the field is read-only, the signer sees the value displayed for confirmation
- The signer taps “Confirm” on each review step, then “Next” on signature steps, then “Complete”
Example flow
A signer opens a document withauthorized_signatory, title, signature, and initials fields — all prefilled:
| Step | Field | Display | Button |
|---|---|---|---|
| 1 | Authorized Signatory | Editable text input, prefilled with “Jane Smith” | CONFIRM |
| 2 | Title | Editable text input, prefilled with “CFO” | CONFIRM |
| 3 | Signature | Auto-generated signature image | NEXT |
| 4 | Initials | Auto-generated initials image | COMPLETE |
Setting review_in_carousel on fields
Set it per field in the template schema via the API:
review_in_carousel only affects the confirmation_modal Quick Sign mode. In other modes, these fields behave normally (inline in the document).Field type support in carousel
| Field Type | Carousel Display |
|---|---|
text, number, phone | Editable text input (if not readonly) |
date | Date picker (if not readonly) |
select, radio | Dropdown selector (if not readonly) |
checkbox | Toggle with label (if not readonly) |
signature, initials | Signature image with redraw option (always) |
| All types when readonly | Read-only confirmation card |
Mode details
confirmation_modal
The most streamlined mode. When all required fields are pre-filled:
- The start screen is skipped automatically
- A full-screen carousel modal appears immediately
- Review fields (if any) appear first — the signer confirms or edits each value
- Signature and initials fields appear next with auto-generated images
- The signer taps through each step, then “Complete” on the last one
- The document is submitted
Signature/initials fields are grouped by type — one carousel step per type. Review fields each get their own step. A template with 2 review fields, 3 signature fields, and 1 initials field produces 4 carousel steps total (2 review + 1 signature + 1 initials).
auto_scroll_signature
A lighter touch than confirmation_modal:
- The document loads normally
- The view automatically smooth-scrolls to the first signature field
- The signer can review the document by scrolling up, or sign immediately
- No modal overlay — the signer interacts with the document directly
review_and_sign
Best for documents where the signer should verify pre-filled data:
- The welcome screen displays a summary of all pre-filled field values
- The signer reviews the data and clicks “Continue”
- Standard signing flow begins with fields already populated
- The signer can modify any editable pre-filled field before submitting
normal
Standard signing with no Quick Sign behavior:
- No auto-scrolling, no modal, no pre-fill summary
- Signatures are not auto-generated from the signer’s name
- The signer fills in every field manually
Template-level configuration
Quick Sign mode can also be set at the template level in template preferences. The submission-levelquick_sign_mode parameter always takes precedence over the template default.
| Preference | Type | Default | Description |
|---|---|---|---|
quick_sign_mode | string | "confirmation_modal" | Default Quick Sign mode for submissions created from this template. |
auto_prefill_signatures | boolean | true | Auto-generate signature images from the signer’s name. |
skip_start_when_prefilled | boolean | false | Skip the welcome/start screen when all required fields are pre-filled. |
Precedence rules
The effective Quick Sign mode for a signing session is resolved in this order:- Submission-level
quick_sign_modeparameter (highest priority) - Template-level
preferences.quick_sign_mode - Default:
"confirmation_modal"
Best practices
Pre-fill everything
Quick Sign works best when all required fields are pre-filled via
submitters[].values. The confirmation modal only triggers when nothing is left for the signer to type.Always include name
Pass the signer’s
name so SpitShake can auto-generate signatures. Without a name, the signer must draw or type their signature manually.Use field keys
Pre-fill values using the field
key (not name or uuid). Set field keys in the template builder or via PUT /api/templates/:id.Test with review mode
During development, use
review_and_sign to verify that your pre-fill values map correctly before switching to confirmation_modal for production.E-sign consent disclosure
Before any signature is captured, signers see a federally-required consent disclosure modal (ESIGN Act § 101(c)). This modal:- Shows automatically on first visit
- Requires the signer to click “I Agree & Continue” before proceeding
- Is re-shown if the signer returns after 24 hours (same-session refreshes skip it)
- On mobile, buttons are sticky at the bottom of the screen so they’re always accessible
- Can be customized via template preferences (
esign_disclosure_title,esign_disclosure_body,esign_disclosure_agree_button_text) - Can be disabled for B2B/non-consumer transactions via
esign_disclosure_enabled: false+esign_disclosure_bypass_acknowledged: true