Organization seals are available on all plans at no extra charge. One credit per send covers both recipient signatures and any seal participants on the request.
What an organization seal is
An organization seal is an electronic seal applied on behalf of a legal entity (your company), not a natural person. It places a company stamp image and metadata on the signed document automatically, without requiring a human to act at signing time. Use it to automate your company’s countersignature: the platform applies the seal at the position you choose in the signing order, so no one on your side has to sign the document by hand. Each seal carries:- A stamp image (uploaded, typed from the company name, or drawn)
- A display name and optional signatory title
- An attestation recorded at creation, confirming the creator’s authority to apply the seal on the company’s behalf
Who can create a seal
Only company owners (the Owner role) can create, replace, revoke, or erase organization seals in the dashboard. Company seals live under Settings > Organization Seals; workspace seals live under the workspace’s Settings > Organization Seals. On the API, a protected API key (the key of the company’s protected workspace) is required for company-scope seals. Workspace-scope seals accept that workspace’s own key or the protected key.The authority statement
Every seal requires an attestation before it can be used. The creator reads and accepts a statement confirming they have the authority to bind the company. This acceptance is recorded with:- The attester’s identity (the dashboard user, or the API key that made the call)
- IP address and user agent
- Language and statement version
- A SHA-256 hash of the canonical statement text
Scope and defaults
Seals exist at two levels:
Set at most one default per scope. The sender can always switch to a different in-scope seal when creating or editing a signing request.
Adding a seal participant
A seal participant is a slot in the signing order that the system fills automatically. Add seal participants to templates and signing requests alongside human recipients. Recipients and seals share one order space.In the editors
In the template editor open the Template Users panel in the sidebar; in the signing request editor open the Signers panel. Click Add seal, pick the seal in the row’s dropdown, and drag the row to set its position. The row reads Applies at send in the top slot and Applies after previous anywhere else. Select the seal row and place at least one stamp field on the document for it. While a seal row is selected the field palette narrows to stamp, text, and date fields.Via the API
Send aseal_participants array on POST /signing-requests, POST /signing-requests/create-and-send, PATCH /signing-requests/{id}, POST /templates, and PATCH /templates/{id}. Each entry takes:
temp_idis a client-chosen id used to assign fields to the seal (seal_participant_temp_idon the field)seal_idis the organization seal to apply; it must be in scope for the request’s workspaceorderis the position in the shared order space. Order 1 (top slot): the seal applies at send, before any recipient is invited or any credit is charged. After recipient N: the seal applies automatically once everyone with a lower order has finished
display_name and signatory_title. All seal fields are server-authored and read-only; client-provided values on them are ignored.
To remove a seal participant and its fields from an unsent request, call DELETE /signing-requests/{id}/seal-participants/{participant_id}.
What the certificate shows
The certificate of completion includes one row per seal participant:
If a seal was paused and then swapped, both events appear on the certificate. No IP address is recorded for seal participants.
Revoke, stop pending, and swap
Revoke
Revoking a seal is prospective: new sends cannot use it, but already-pinned participants on sent requests continue to apply their pinned version. Revoke from the seal’s menu in the dashboard, or withDELETE /seals/{id}.
Choose stop pending applications (DELETE /seals/{id}?stop_pending=true) to also pause every in-flight participant that has not yet applied. Each paused participant:
- Triggers a
signing_request.seal.pausedwebhook - Emails the sender explaining which request is affected
- Blocks signing progress until the sender resolves it
Swap
A paused seal participant can be swapped to a different in-scope seal by a company owner from the request view, or via the API with a protected key:Inspecting a seal
GET /sealslists the seals visible in the key’s scope;GET /seals/{id}returns oneGET /seals/{id}/imagereturns the canonical PNG. Every image read is written to the seal’s access logGET /seals/{id}/applicationslists the signing requests the seal was applied toGET /seals/{id}/access-loglists lifecycle and image-read events for the seal
Erase and retention
Seal versions, attestations, and access-log rows are retained as long as any sent or finished signing request (including test requests) references the version. This is the same standing as signed documents. A revoked seal lineage that is referenced by no request and no template may be erased by a company owner 90 days after revocation, in the dashboard or withDELETE /seals/{id}/erase. The response lists which templates and requests block erasure if any do. Erasure is logged append-only.
Webhooks
Organization seals generate seven event types:Seal lifecycle events
organization_seal.created: a new seal was createdorganization_seal.updated: a seal’s image was replaced (new version), it was renamed, or its default flag changedorganization_seal.deleted: a seal was revokedorganization_seal.erased: a revoked seal lineage was permanently erased
Signing request seal events
signing_request.seal.applied: a seal was applied to a documentsigning_request.seal.paused: a seal participant was paused (revoked seal with stop pending, or integrity mismatch)signing_request.seal.swapped: a paused seal participant was swapped to a different seal
Prefer a typed name or logo
When creating a seal, prefer a typed company name or a company logo stamp over a reproduction of a real handwritten autograph. A handwritten image on an organization seal is misleading (it implies a person signed) and may constitute a forgery asset. The typed and drawn modes produce a clean, recognizable mark that honestly represents the company.Test mode
Test API keys can create and manage live seals. Test signing requests can apply them. Every test document carries a watermark, so no test artifact is ever unmarked. The PAdES digital seal is applied to test documents where enabled in the workspace.Related guides
- Legal Validity: where organization seals stand under eIDAS Article 35/36
- Webhooks: subscribe to seal lifecycle and application events
- Audit Trail: the full event schema behind every signing request
- Sending a Signing Request: add seal participants alongside human recipients