Overview
Users in iinked Sign can create reusable templates in the UI to quickly generate new signing packages for frequently used workflows. You can retrieve a list of available templates and apply a template when creating a package.Steps
Get the template
You can retrieve a list of an organization members current templates by calling See the Templates list API for more information.
templates/list endpoint.Request
Manually getting template details
If you know the template you want to use, you can manually copy thetemplate ID and signer roles from iinked Sign by navigating to the Templates section, selecting a template, and copying the ID from the URL and the roles from the editor.Create package using the template
Once you have the template ID and signer roles, you can create a new package by calling the
packages/add endpoint and setting the templateId.Documents
All documents associated with the template will be included in the package. You can add additional documents by including them in thedocuments array.Replacing documents
If you want to replace a document with a different file (e.g., a new version), upload the new file and add it to thedocuments array,
setting either templateDocumentId or name to that of the template document you want to replace.This will swap out the document in the package while retaining all templated fields.Signers
Associate template signers by setting thetemplateSignerId or templateRole for each signer in the signers array.Recipients
Associate template recipients by setting thetemplateRecipientId or templateRole for each recipient in the recipients array.- Using roles
- Using IDs
- Replace doc using ID
- Replace doc using name
Request