Signing Requests

Retrieve Signer Initials Image

Retrieve a signer's adopted initials as a base64 PNG data URI. One initials mark per signer (no field_id). Same response shape, framing, audit, and rate limit as the signature endpoint.

get/signing-requests/{id}/signers/{signer_id}/initials

Path parameters

idstring uuid required

Signing request ID

signer_idstring uuid required

Signer (recipient) ID

Query parameters

include_frameboolean

Overlay the signer-ID frame on the image (default true). Set to false for the bare mark.

Response

The signer's mark as a base64 PNG data URI.

signer_idstring uuid
kind'signature' | 'initials' | 'stamp'
formatstring
framedboolean

Whether the signer-ID frame was overlaid.

imagestring

PNG as a data URI.

Example response

{
  "format": "png",
  "image": "data:image/png;base64,iVBORw0KGgo..."
}

Changes