For the complete documentation index, see llms.txt. This page is also available as Markdown.

Checkbox Field API

This document contains the Checkbox field API format and a list of supported attributes.

Use this page to add a checkbox field to template XML. Assign the field to a role with roleId, then reuse the same field name in envelope requests.

Checkbox field example

<field
    type="checkbox"
    name="accept_terms"
    roleId="fd8cb669-db1d-41e1-8f6c-2ad3f8fa981a"
    search="true"
    optional="false"
/>

Required attributes

  • type — field type. Use checkbox.

  • name — field name. Use 1 to 128 characters. Do not use &, ", <, or >. Keep the value unique within one document.

  • roleId — role identifier for the recipient who fills the field.

Optional attributes

  • search — set to true if the field value should be available in envelope search. If you omit it, the default value is false.

  • optional — set to true if the recipient can leave the field empty. If you omit it, the default value is false.

Rules

  • Use the same name later when you send or fill envelope data.

  • Keep the field name unique within the same document.

Last updated

Was this helpful?