Description of the Consent Object format that is used by the onsite API to receive and update consent.
The Consent Object is a standardised way to represent consent throughout all methods of the onsite JavaScript API (similar to the IAB TCF consent string). The object holds a meta
property that includes metadata like the validity of the cookie and a consent
property that holds that current consent settings stored on the browser.
The onsite API and Consent Object is the official way to access the consent settings of TrustCommander with JavaScript. The direct usage of the Consent Cookie is deprecated.
The meta
property includes metadata and context for the consent that was provided on a browser.
Property
Description
Type
meta.version
Version of the Consent Object.
String
meta.tcfPolicyVersion
Version of the IAB TCF consent.
String
meta.siteId
Commanders Act site id associated to the consent.
String
meta.bannerId
Banner id associated to the consent.
String
meta.bannerVersion
Banner version associated to the consent.
String
meta.consentId
Id of the consent stored in the TCPID
cookie.
String
meta.dateCreated
Timestamp when the consent was provided (UNIX Epoch in Milliseconds).
Number
meta.dateUpdated
Timestamp when the consent was updated the last time (UNIX Epoch in Milliseconds).
Number
meta.dateExpires
Timestamp when the consent will expire (UNIX Epoch in Milliseconds).
Number
The consent property includes detailed information about the consent provided on the browser.
Property
Description
consent.status
Global status of the consent that can have one of the following values: all-on: All consent categories have been accepted.
all-off: All consent categories have been refused (except blocked on).
mixed: Some consent categories have been refused.
unset: No consent has been provided yet.
consent.categories[category_id].status
Status of an individual category:
on: Consent was provided.
off: Consent was rejected.
unset: No consent has been provided yet (In case neutral button position is configured it will switch to neutral button position for this category).
category_id
is the category id configured under TRUST > Categories & Tags
.
consent.categories[category_id].required
The property was set to blocked on and the status is always on.
consent.vendors[vendor_id].status
Status of an individual vendor:
on: Consent was provided.
off: Consent was rejected.
unset: No consent has been provided yet (In case neutral button position is configured it will switch to neutral button position for this vendor).
vendor_id
is the vendor id configured under TRUST > Categories & Tags
.
Category and Vendor IDs are prefixed with an identifier in case they are managed by a consent framework.
Framework
Prefix
tcf2_
IAB TCF 2 framework. Special features are additionally prefixed with sf_
acm_
Google's Additional Consent Mode vendors.