Skip to main content
The Signatures API sends a PDF for electronic signature and returns a cryptographically signed PDF with a tamper-evident audit page (eIDAS fortified electronic signature). It is designed as a straightforward migration target for DocuSeal users.

How it works

  1. Create a signature request from a PDF, the field positions, and the signer(s). You receive a hosted signing link per signer.
  2. The signer opens the link, reviews the document, and signs in the browser.
  3. Poll the request or subscribe to the signature_completed webhook, then download the signed PDF.
No email is sent by default. You get the signing links back and use them in your own flow. The signing page is meetergo-branded (and available in German), so you do not need to host your own signing page.

Coordinate model (same as DocuSeal)

Field positions are given as areas using normalized coordinates: x, y, w, h are fractions of the page (01) from the top-left corner, and page is 1-indexed. This matches DocuSeal, so existing field layouts port directly.

Create a request

The response includes a signingUrl per signer. Field types: signature, initials, text, date, number. Optional: language (en/de), completedRedirectUrl (where the signer goes after signing), and expiresAt. Endpoint details and schemas are in the API Reference under Signatures V4 (POST /v4/signatures, GET /v4/signatures/{id}, GET /v4/signatures/{id}/document, DELETE /v4/signatures/{id}, GET /v4/signatures/ping).

Get notified

Subscribe a webhook to the signature_completed event instead of polling. When a request is fully signed, meetergo POSTs the request id, signer, and a download URL for the signed PDF.

Migrating from DocuSeal

The areas coordinate model is identical, so field layouts carry over directly.
Signatures are eIDAS fortified electronic signatures: the document is cryptographically signed (PAdES, with a qualified timestamp) and a tamper-evident audit page is appended.