Recipient Types

Automatic Signer

A recipient type whose signature is applied automatically by the system

An automatic signer is a person whose signature is applied automatically by the system. The signer does not receive an email, does not access a ceremony, and does not interact with the document. You provide the signature and initials images when you create the envelope, along with a mandate recording why you are authorized to sign on their behalf.

Not equivalent across signature frameworks. Because an automatic signer does not interact with the document, this recipient type does not produce the same legal weight as a standard signer in every jurisdiction.

  • US (ESIGN Act, UETA). Generally defensible when the initiator has recorded authority to sign on the person’s behalf. The mandate field is designed to capture that authority basis on the audit log.
  • EU (eIDAS). SignatureAPI operates at the Simple Electronic Signature (SES) level for all recipient types. A standard signer’s SES is strengthened by the signer’s direct consent and signing action during the ceremony. An automatic signer has neither, so its evidentiary weight within SES is weaker and admissibility is decided case by case.

Use a standard signer when local regulation requires the signatory to interact with the document directly, or when the document warrants the stronger evidentiary trail that a live ceremony produces. Consult your legal counsel before using automatic signers for high-risk documents.

Use an automatic signer when you have prior authorization to sign on the person’s behalf and you want their signature to appear on the document without any live interaction. Common examples include:

  • A clinician’s signature applied to prescriptions or reports under a standing authorization
  • A company officer’s signature applied to routine documents under a power of attorney or corporate resolution
  • A notary or agent’s signature applied under a recorded mandate

Automatic signer vs. signer

Automatic signerSigner
Receives an invitation emailNoYes (when delivery_type is email)
Accesses a ceremonyNoYes
Consents to electronic signaturesNo (authority is pre-declared)Yes
Adds signature during the envelopeNo (provided at creation)Yes
Recorded in audit logYesYes
Recipient typeautomatic_signersigner

An automatic signer counts as a signing recipient. An envelope that contains only automatic signers is valid and completes without any recipient interaction.

How the signature is applied

When you create an envelope that contains an automatic signer, SignatureAPI:

  1. Validates the signature and initials you provide. Invalid uploads or missing images return a validation error.
  2. Skips ceremony creation for the recipient. No email is sent.
  3. Applies the provided images to every signature and initials place assigned to the recipient.
  4. Transitions the recipient to completed and writes a single line to the audit log.

The audit log line names the signer, cites the mandate verbatim, and attributes the authority to the initiator of the transaction:

Automatically signed by Dr. John Doe (#a3f9b2):
  With permission given and recorded on Jan 1 2026.
As provided by the initiator of the electronic signature transaction.

Creating an envelope with an automatic signer

Specify "type": "automatic_signer", a mandate, and at least one of signature or initials. Supply signature if the recipient has any signature places, and initials if the recipient has any initials places.

// POST https://api.signatureapi.com/v1/envelopes
// X-API-Key: key_test_...
// Content-Type: application/json

{
    "title": "Prescription",
    "recipients": [
        {
            "key": "dr_doe",
            "type": "automatic_signer",
            "name": "Dr. John Doe",
            "signature": {
                "type": "drawn",
                "url": "https://api.signatureapi.com/v1/uploads/upl_1sAAaVfabdt0esVjmSTmLA"
            },
            "initials": {
                "type": "drawn",
                "url": "https://api.signatureapi.com/v1/uploads/upl_2tBBbWgbcdeu1fsWknUnNB"
            },
            "mandate": "With permission given and recorded on Jan 1 2026"
        }
    ],
    //...
}

Required properties

type
string
required

Must be automatic_signer.

key
string
required

A unique identifier you assign to the recipient. Used to match the recipient with places and to identify them in events and webhook notifications.

name
string
required

The full name of the signer. Appears in the audit log line that records the automatic signature.

mandate
string
required

A short statement explaining why the initiator is authorized to sign on behalf of this person. This string is shown as-is in the audit log.

Maximum 500 characters. Cannot be empty.

Legal responsibility for the underlying authorization instrument (power of attorney, corporate resolution, standing authorization, or similar) sits with the initiator of the envelope. SignatureAPI records the mandate you supply verbatim in the audit log but does not verify its legal sufficiency.

Conditional properties

The recipient must be assigned at least one signing place (signature or initials), and the matching image must be supplied.

signature
object

The signature image to apply. Required when the recipient is assigned any place of type signature. A preset symbol object with type and url.

initials
object

The initials image to apply. Required when the recipient is assigned any place of type initials. A preset symbol object with type and url.

Assigning places to an automatic signer

Automatic signers must be assigned at least one signature or initials place. Assign places using the recipient_key property, the same as for signers.

{
    "documents": [
        {
            "places": [
                {
                    "type": "signature",
                    "recipient_key": "dr_doe",
                    "key": "doctor_sig"
                },
                {
                    "type": "initials",
                    "recipient_key": "dr_doe",
                    "key": "doctor_init"
                }
            ],
            //...
        }
    ],
    //...
}

If you assign a signature place, the signature image is required. If you assign an initials place, the initials image is required. Supplying a place without the matching image returns a missing preset symbol error.

Routing with an automatic signer

Automatic signers follow the envelope’s routing order. In a sequential envelope, an automatic signer earlier in the list completes first, and the next recipient activates. In a parallel envelope, the automatic signer completes as soon as the envelope is released, alongside any other parallel recipients.

{
    "routing": "sequential",
    "recipients": [
        {
            "key": "doctor",
            "type": "automatic_signer",
            "name": "Dr. John Doe",
            "signature": { "type": "drawn", "url": "https://api.signatureapi.com/v1/uploads/upl_..." },
            "mandate": "Standing authorization on file for prescription signatures"
        },
        {
            "key": "patient",
            "type": "signer",
            "name": "Jordan Lee",
            "email": "jordan@example.com"
        }
    ]
}

In this example, the doctor’s signature is applied automatically, then the patient is invited to sign.

Delivery

Automatic signers have no email address and no delivery_type. They do not receive invitations and do not receive the completed deliverable. If you need a copy of the signed document delivered to the person whose signature was applied, handle that distribution in your application.

Audit log

The audit log records a single line for each automatic signer:

Automatically signed by {name} (#{recipient_hash}):
  {mandate}.
As provided by the initiator of the electronic signature transaction.

The recipient_hash is the short identifier SignatureAPI assigns to the signer . The mandate value appears verbatim, so phrase it as a complete statement that stands on its own in the permanent record.

Next steps