Skip to main content
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.

Quick Sign modes

Set the quick_sign_mode parameter when creating a submission to control the signing experience:

How it works

  1. You create a submission with pre-filled field values via the API
  2. SpitShake evaluates whether all required fields are satisfied
  3. 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’s name 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

string
default:"confirmation_modal"
The signing UX mode. One of: normal, review_and_sign, confirmation_modal, auto_scroll_signature.
string
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).
object
Key-value pairs matching field keys defined in the template schema. Pre-fills fields before the signer opens the document.

Response

The response includes a signing_url for each submitter. When the signer opens this URL, the Quick Sign experience activates automatically based on the mode you selected.

Validate before creating

Use the read-only qualification endpoint with the same inputs that affect submission creation:
gates are screens that the signer will still see. The endpoint guarantees field-level eligibility; it does not promise a literal one-click experience unless one_click is true. That requires all fields to qualify, confirmation_modal mode, and every gate to be false. For example, the ESIGN disclosure remains a gate unless both the disable flag and its B2B acknowledgment are set on the template. If submitters is omitted, the endpoint validates every template submitter with no prefills. Within the array, uuid takes precedence over role; conflicting, unknown, ambiguous, or duplicate mappings return 422. You can have the signer confirm specific prefilled values inside the confirmation modal carousel — useful for fields like “Authorized Signatory” or “Title” where you want explicit confirmation (or an edit) before signing, all within the same modal flow with no context switching. Turn this on per field with the review_in_carousel preference, or for an entire document with the carousel_review_documents template preference. By default, prefilled fields are not shown as review steps — the signer only taps through signatures. Review steps appear only for the fields (or documents) you explicitly flag.

How it works

  1. Fields with review_in_carousel: true appear before signature/initials steps in the carousel
  2. If the field is also editable (not readonly), the signer sees an input they can modify
  3. If the field is read-only, the signer sees the value displayed for confirmation
  4. The signer taps “Confirm” on each review step, then “Next” on signature steps, then “Complete”

Example flow

A signer opens a document with authorized_signatory, title, signature, and initials fields — all prefilled: 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).

Review an entire document

To make the signer confirm every field in a specific document, add that document’s UUID to the template’s carousel_review_documents preference. This is convenient for an attachment such as a government form or a key exhibit where each value should be verified, without flagging fields one at a time.
Every non-signature field whose area falls in one of these documents becomes a review step. Document UUIDs come from template_documents[].uuid (returned by GET /api/templates/:id).
Template preferences is replaced wholesale on update. To turn document review off again, send carousel_review_documents: [] — an empty object {} is treated as “no change” by the update endpoint, so send the empty array explicitly.

Precedence and opting out

A field’s effective review setting resolves in this order:
  1. Field review_in_carousel: true → always reviewed
  2. Field review_in_carousel: false → never reviewed, even if its document is flagged
  3. Otherwise, reviewed if its document is in carousel_review_documents
  4. Otherwise, not reviewed (default)
So an individual field can opt out of a reviewed document by setting review_in_carousel: false on itself:
Fields hidden by an unmet conditional rule, and stamp fields, are never shown as review steps — even when their document is flagged.

Mode details

confirmation_modal

The most streamlined mode. When all required fields are pre-filled:
  1. The start screen is skipped automatically
  2. A full-screen carousel modal appears immediately
  3. Review fields (if any) appear first — the signer confirms or edits each value
  4. Signature and initials fields appear next with auto-generated images
  5. The signer taps through each step, then “Complete” on the last one
  6. The document is submitted
If any required fields are not pre-filled, the modal does not appear and the signer fills in missing fields manually before the modal triggers.
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:
  1. The document loads normally
  2. The view automatically smooth-scrolls to the first signature field
  3. The signer can review the document by scrolling up, or sign immediately
  4. No modal overlay — the signer interacts with the document directly

review_and_sign

Best for documents where the signer should verify pre-filled data:
  1. The welcome screen displays a summary of all pre-filled field values
  2. The signer reviews the data and clicks “Continue”
  3. Standard signing flow begins with fields already populated
  4. 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-level quick_sign_mode parameter always takes precedence over the template default.

Precedence rules

The effective Quick Sign mode for a signing session is resolved in this order:
  1. Submission-level quick_sign_mode parameter (highest priority)
  2. Template-level preferences.quick_sign_mode
  3. 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.
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
Updating template schema via PUT: PUT /api/templates/:id replaces the entire schema array. Always GET the full schema first, modify the fields you need, and PUT the complete array back. Sending a partial schema will delete all fields not included. If this happens, use the Restore Version endpoint to roll back.