Hidden Tags is a feature that allows users to add interactive fields to documents.
| Type | Context |
| signature | Signature field |
| initials | Initials field |
| text | Input text field |
| textarea | Input text area field |
| Input email field | |
| url | Input URL field |
| security | Password field |
| number | Input number field |
| dropdown | Dropdown field |
| multiselect | Multi Select Checkbox |
| radio | Radio button (single value) |
| date | Input date field |
| check | Checkbox |
| upload | File upload field |
| timestamp | Current date and time as text (Read only) |
| stamps | Stamp defined by the sender |
Tag Structure
Each field has position, type, group, order, and unique identification, plus additional options depending on the type.
Example structure:
[Sign2me:type;group;order;identification;additional options]
Sign2me: indicates it’s a tag
Type: defines the field type
Group: signer group
Order: signer order
Identification: unique field ID
Signature Fields
Example of creating a signature field for signer group 1, number order 2, with the unique field ID sign_1
[Sign2me:signature;1;2;sign_1]
Meaning of Positions
| [Sign2me: | Always at the beginning |
| signature; | Field type |
| 1; | Defines the signer group |
| 2; | Defines the signer order |
| sign_1 | Unique field ID |
| ] | End tag |
Initials Fields
Example of creating a initial field for signer group 1, number order 2, with the unique field ID init_1
[Sign2me:initials;1;2;init_1]
Meaning of Positions
| [Sign2me: | Always at the beginning |
| initials; | Field type |
| 1; | Defines the signer group |
| 2; | Defines the signer order |
| init_1 | Unique field ID |
| ] | End tag |
Text Fields
Example of creating a text field for signer group 1, number order 2, with the unique field ID text_1, required for filling, not read-only, has a placeholder like “Enter your city”, has the default value of “New York”, with width 200 and height 20.
[Sign2me:text;1;2;text_1;Y;N;Enter your city;New York;200;20]
| [Sign2me: | Always at the beginning |
| text; | Field type |
| 1; | Defines the signer group |
| 2; | Defines the signer order |
| text_1 | Unique field ID |
| Y; | Required field (Y/N) |
| N; | Read-only (Y/N) |
| Enter your city; | Placeholder text |
| New York; | Default value |
| 200; | Field width |
| 20 | Field height |
| ] | End tag |