Skip to main content

Signing Methods

sajn supports multiple signing methods to accommodate different use cases, security requirements, and legal needs. Each method offers a different balance between convenience and verification strength.

SES vs AES Signatures

Before choosing a signing method, it’s important to understand the two categories of electronic signatures under the eIDAS regulation:
TypeFull NameLegal WeightVerification
SESSimple Electronic SignatureLegally valid, basicIntent to sign
AESAdvanced Electronic SignatureHigher legal standingIdentity verified
For most everyday business documents, SES methods (Drawing, Click-to-Sign) provide sufficient legal validity. Use AES (BankID) for contracts requiring stronger identity verification.

Quick Comparison

MethodTypeRequirementsUser EffortBest For
DRAWINGSESNoneMediumPersonal touch, visual signatures
CLICK_TO_SIGNSESNoneVery LowHigh-volume, low-friction signing
BANKIDAESSwedish SSNMediumLegal contracts, identity verification
MANUALN/APhysical presenceN/AIn-person signing, legacy documents

Drawing Signature

Drawing Signature
The drawing signature allows signers to create a free-hand signature using their mouse, trackpad, or touchscreen. This provides a personal, traditional feel while remaining fully digital.

How It Works

  1. Signer opens the signing link
  2. Reviews the document content
  3. A signature pad appears with the confirmation: “Härmed bekräftar jag följande:” (I hereby confirm the following:)
  4. Signer draws their signature using mouse or touch
  5. Signature is captured and applied to the document

Requirements

  • No special requirements
  • Works on any device with a browser
  • Touch-enabled devices provide the best experience

Best For

  • Employment contracts
  • Sales agreements
  • Documents where a personal signature touch is desired
  • Mobile-friendly signing flows

API Configuration

{
  "name": "John Doe",
  "email": "john@example.com",
  "role": "SIGNER",
  "deliveryMethod": "EMAIL",
  "requiredSignature": "DRAWING"
}
The signature canvas is responsive: 288px width on desktop, 256px on mobile devices.

Click-to-Sign

Click to Sign
Click-to-Sign is the fastest signing method, requiring only two clicks to complete. Perfect for high-volume documents where speed matters more than a visual signature.

How It Works

  1. Signer opens the signing link
  2. Reviews the document content
  3. Clicks the “Klicka för att signera” (Click to sign) button
  4. A confirmation dialog appears with a 60-second countdown
  5. Signer clicks “Bekräfta signering” (Confirm signing)
  6. Document is signed

Requirements

  • No special requirements
  • Works on any device with a browser
  • Fastest completion time

Best For

  • Terms of service acceptance
  • NDAs and standard agreements
  • Internal approvals
  • High-volume document workflows
  • Mobile-first experiences

API Configuration

{
  "name": "John Doe",
  "email": "john@example.com",
  "role": "SIGNER",
  "deliveryMethod": "EMAIL",
  "requiredSignature": "CLICK_TO_SIGN"
}
Click-to-Sign creates detailed audit trail entries for both the initiation click and the confirmation, providing clear evidence of intent.

BankID

BankID Signing
BankID is Sweden’s leading electronic identification system, providing cryptographically verified signatures. This is an Advanced Electronic Signature (AES) with the highest legal standing.

How It Works

On Desktop:
  1. Signer opens the signing link
  2. Reviews the document content
  3. A QR code appears on screen
  4. Signer scans the QR code with their phone’s BankID app
  5. Confirms the signing in the BankID app
  6. Document is signed with verified identity
On Mobile:
  1. Signer opens the signing link
  2. Reviews the document content
  3. Clicks to open BankID app (or scans QR as fallback)
  4. Confirms the signing in the BankID app
  5. Returns to sajn with completed signature

Signing States

The BankID flow progresses through these states:
StateDescription
checkingVerifying BankID availability
readyQR code displayed, waiting for scan
waitingQR scanned, waiting for user action in app
authenticatingUser confirming in BankID app
verifyingValidating the signature
completeSignature successfully applied

Requirements

  • Swedish personal number (SSN) - required
  • Signer must have BankID installed on their device
  • Active BankID certificate

Best For

  • Real estate transactions
  • Financial agreements
  • Employment contracts requiring identity verification
  • Any document where verified identity is legally important
  • Swedish market documents

API Configuration

{
  "name": "John Doe",
  "email": "john@example.com",
  "ssn": "197001011234",
  "role": "SIGNER",
  "deliveryMethod": "EMAIL",
  "requiredSignature": "BANKID"
}
The SSN field is required for BankID signatures. Without a valid Swedish personal number, the signing will fail.

Manual Signing

Manual Signing
Manual signing is used for in-person or physical signatures. The document organizer marks the signature as complete after collecting the physical signature.

How It Works

  1. Document is created with a signer set to manual signing
  2. The physical signing happens outside of sajn
  3. Organizer accesses the document in sajn
  4. Organizer marks the signer as having signed
  5. Document flow continues with remaining signers

Requirements

  • Physical presence of signer
  • Organizer action to confirm signing
  • No digital signature UI shown to signer

Best For

  • In-person meetings or closings
  • Imported legacy documents
  • Situations where digital signing isn’t possible
  • Hybrid workflows mixing digital and physical signatures

API Configuration

{
  "name": "John Doe",
  "email": "john@example.com",
  "role": "SIGNER",
  "deliveryMethod": "NONE",
  "requiredSignature": "MANUAL"
}
Manual signing is typically combined with deliveryMethod: "NONE" since the signer doesn’t need a digital signing link.

Choosing the Right Method

Use CLICK_TO_SIGN. It requires only two clicks and works on any device without special requirements.
Use BANKID. It provides cryptographic identity verification and is an Advanced Electronic Signature (AES).
Use DRAWING. Signers can create their own signature, providing a traditional feel.
Use MANUAL. The organizer marks the document as signed after collecting the physical signature.
Use DRAWING or CLICK_TO_SIGN. BankID only works for signers with Swedish personal numbers.

Comparison by Use Case

Use CaseRecommended MethodReason
Employment contractsDRAWING or BANKIDPersonal touch or verified identity
Terms acceptanceCLICK_TO_SIGNMinimal friction
Real estateBANKIDLegal requirement for identity
International agreementsDRAWINGNo Swedish ID required
Internal approvalsCLICK_TO_SIGNSpeed and convenience
Notarized documentsMANUALRequires physical presence

Mixing Methods

You can assign different signing methods to different signers on the same document:
{
  "signers": [
    {
      "name": "CEO",
      "email": "ceo@company.com",
      "ssn": "197001011234",
      "requiredSignature": "BANKID",
      "signingOrder": 1
    },
    {
      "name": "Employee",
      "email": "employee@company.com",
      "requiredSignature": "DRAWING",
      "signingOrder": 2
    }
  ]
}
This allows you to require stronger verification for key signers while keeping the process simple for others.

Next Steps

Send for Signing

Learn how to send documents for signing

Identity Verification

Add extra verification steps

Signers

Learn more about signer configuration

Webhooks

Get notified when documents are signed