Retrieve Signer Signature Image
Retrieve a signer's adopted signature as a base64 PNG data URI, separate from the signed PDF. A signer adopts one signature applied to all their signature fields, so no field_id is needed. Drawn signatures return the captured image; typed signatures are rendered to PNG server-side. The image is a data:image/png;base64,... URI usable directly in an <img src>. By default a signer-ID frame is overlaid (include_frame=false to omit). Every successful retrieval is audit-logged. Rate limited to 60/min. Legal validity rests on the sealed PDF and completion certificate, not this image.
Path parameters
Signing request ID
Signer (recipient) ID — the recipient_id from GET /fields
Query parameters
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.
Example response
{
"format": "png",
"image": "data:image/png;base64,iVBORw0KGgo..."
}