Skip to main content
Prerequisites: Familiarity with templates and the publishing workflow.
When you publish a new template version, you must choose an Effective at date and time. That timestamp determines when the new version becomes visible to end users through the SDK.
Until the effective time is reached, the previously effective version (if any) continues to be presented to end users. A newly published version does not become current until its Effective at time is reached.

Lifecycle states

StateWhen it occursSDK behavior
ScheduledeffectiveAt is set in the futureNot served by the SDK — previous version remains active
EffectiveeffectiveAt time has been reachedServed to end users via the SDK
SupersededA newer version’s effectiveAt has passedNo longer served; retained for auditing

Major vs. minor versions

MajorMinor
Numbering1.0, 2.0, 3.01.1, 1.2, 2.1
Re-acceptanceAll users must re-acceptOnly users who haven’t accepted the latest major
Use whenLegal terms change meaningfullyTypos, formatting, non-legal clarifications
The SDK automatically determines whether to show the dialog based on version type. If a user accepted major version 2.0 and you publish minor version 2.1, the dialog is not shown to that user.
The following diagram shows how a user’s consent status transitions through the lifecycle:
When a new major version becomes effective, all users reset to NO_DATA for that version and must re-accept. Minor versions do not trigger re-acceptance.

Implications for your integration

  • Always call ClicktermDialog.show() — The SDK handles the logic of whether to display the dialog or resolve immediately
  • Check consent status programmatically — Use GET /clickwraps/{endUserId}/status to verify compliance before allowing access
  • Handle re-acceptance — When a new major version becomes effective, users who accepted a previous major version will see the dialog again
Publishing a version alone is not sufficient. The template must also be Enabled and the version’s effectiveAt time must have been reached.

Product Guide: Version types

Detailed guide on major vs. minor versions and lifecycle states.

Checking consent status

Query end user compliance status via the API.