Skip to main content
Prerequisites: A published template with placeholder tokens configured in the template editor, and the SDK installed.
Placeholders inject dynamic, user-specific values into template content without changing the published text. Provide values through your integration whenever a clickwrap flow is triggered.
Starting from Web SDK 2.3.0, Android SDK 2.2.0, and React Native SDK 0.3.0, custom placeholders are passed through customPlaceholders instead of flat custom1 to custom10 fields. If you are on an older version, see the older versions section below.

Available placeholders

fullName
String
Full Name — End user’s full name. Max 100 chars. Letters, digits, spaces, basic punctuation.
email
String
Email — End user’s email address. Max 254 chars. Standard email format.
company
String
Company — Organization name. Max 100 chars. Letters, digits, spaces, basic punctuation.
jobTitle
String
Job Title — End user’s role. Max 80 chars. Letters, digits, spaces, basic punctuation.
date
String
Date — Optional date string rendered into the template.
phoneNumber
String
Phone — Contact number. Max 30 chars. Digits, spaces, basic punctuation.
registrationNumber
String
Registration No. — Company registration identifier. Max 50 chars. Letters, digits, spaces, basic punctuation.
vatNumber
String
VAT Number — VAT identifier. Max 50 chars. Letters, digits, spaces, basic punctuation.
address
String
Address — Physical address. Max 500 chars. Letters, digits, spaces, punctuation, newlines.
customPlaceholders
Map<String, String>
Custom placeholders — User-defined placeholder key-value pairs. Max 10000 chars. Letters, digits, spaces, punctuation, newlines
If a placeholder value is not supplied, it appears as a dash (-) in the rendered agreement.

Usage

How it works

  1. You configure placeholder tokens in the template editor (drag and drop from the sidebar)
  2. When calling ClicktermDialog.show() or ClicktermDom.renderInline(), pass values via the templatePlaceholders parameter
  3. ClickTerm substitutes those values into the template before rendering
  4. The same values appear in the Clickwrap Event, Certificate of Acceptance, and end user record
Template editor showing placeholder tokens being inserted into the agreement
Rendered clickwrap modal showing placeholders replaced with live data

Product Guide: Placeholders

How to configure placeholder tokens in the dashboard editor.

Displaying a clickwrap

Full guide on showing the clickwrap dialog.