templateUpdateInput
Update a Template's settings.
Fields
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
templateId | ID! | Yes | — | Template to update |
title | String | No | — | New title |
locked | Boolean | No | — | Lock/unlock the template |
autoArchive | Boolean | No | — | Auto-archive after sending |
fixSignatureScale | Boolean | No | — | Constrain signatures to 1:3.88 ratio |
documentRetentionDays | Int | No | — | Days to retain signed documents |
Example
mutation UpdateTemplate {
updateTemplate(input: {
templateId: "dHBsYjQ5YTg5NWQ="
title: "Updated Contract"
locked: true
})
}