Skip to main content
GET
/
clickwrap-events
/
{id}
/
details
cURL
curl -X GET \
  -H "X-APP-ID: YOUR_APP_ID" \
  -H "X-APP-KEY: YOUR_APP_KEY" \
  "https://api.clickterm.com/public-client/v1/clickwrap-events/{clickwrapEventId}/details"
{
  "clickwrapEventStatus": "ACCEPTED",
  "clickwrapEventId": "123e4567-e89b-12d3-a456-426614174000",
  "clickwrapTemplateId": "987e6543-e21b-45d3-b321-426614174999",
  "clickwrapTemplateVersion": 1,
  "clickwrapTemplateVersionMinor": 0,
  "endUserId": "423e4567-e89b-12d3-a456-426614174000",
  "templatePlaceholders": "{ \"email\": \"[email protected]\", \"phone\": \"+12345678900\" }",
  "technicalMetadata": "{\"userAgent\":\"okhttp/4.8.1\",\"ip\":\"a100:a100:a100:a100:a100:a100:a100:a100\"}",
  "presentedAt": "2025-08-20T14:25:00Z",
  "actionAt": "2025-08-20T14:30:00Z",
  "effectiveAt": "2025-08-20T14:00:00Z"
}

Authorizations

X-APP-ID
string
header
required

Your application's App ID, sent as the X-APP-ID header. Must be accompanied by X-APP-KEY for authenticated endpoints.

X-APP-KEY
string
header
required

Your application's secret App Key (server-side only)

Path Parameters

id
string<uuid>
required

Clickwrap Event ID

Response

Event details retrieved

Full details of a verified clickwrap event

clickwrapEventStatus
enum<string>

The verified status of the clickwrap event

Available options:
ACCEPTED,
DECLINED
clickwrapEventId
string<uuid>

Unique identifier for this Clickwrap Event

clickwrapTemplateId
string<uuid>

The clickwrap template shown to the end user

clickwrapTemplateVersion
integer

Major version number of the template used for this event

clickwrapTemplateVersionMinor
integer

Minor version number of the template used for this event

endUserId
string

The end user identifier linked to this event

templatePlaceholders
string | null

JSON-encoded placeholder values used in the template, or null

technicalMetadata
string

JSON-encoded client metadata (IP address, user agent, device info)

presentedAt
string<date-time>

When the clickwrap was presented to the end user (UTC, ISO-8601)

actionAt
string<date-time>

When the end user performed the action (UTC, ISO-8601)

effectiveAt
string<date-time>

When the template version became effective (UTC, ISO-8601)