# IAB TCF V2.0 Consent

If you are using IAB TCF option (see [this page](https://community.commandersact.com/trustcommander/user-guides/options#iab-tcf-compliancy) to setup IAB TCF on your account), you will be able to use IAB TCF's `__tcfapi` where your privacy banner is deployed.

That function is defined in your container and in your privacy banner so that you can use it before your privacy banner has finished loading. It is sometimes referred by IAB as the `TCF API stub`.

IAB TCF consent is encoded in a format called the `Consent-String`.

### How to use the TCF API

The recommended way of getting the value of TCF's consent-string (`tcData.tcString` in the example below) is by using the `addEventListener` command.

```javascript
__tcfapi('addEventListener', 2, function(tcData, success) {
  if(success &&
    (tcData.eventStatus === 'tcloaded' || tcData.eventStatus === 'useractioncomplete')) {

    // do something with tcData.tcString

  } else {

    // do something else

  }
});
```

Sometimes you do not want to be notified of consent updates. You can achieve this by using the more advanced code below:

```javascript
__tcfapi('addEventListener', 2, function(tcData, success) {
  if(success &&
    (tcData.eventStatus === 'tcloaded' || tcData.eventStatus === 'useractioncomplete')) {

    // do something with tcData.tcString

    // remove ourselves to not get called more than once
    __tcfapi('removeEventListener', 2, tcData.listenerId);

  } else {

    // do something else

  }
});
```

* Reference: [IAB TCF commands](https://github.com/InteractiveAdvertisingBureau/GDPR-Transparency-and-Consent-Framework/blob/master/TCFv2/IAB%20Tech%20Lab%20-%20CMP%20API%20v2.md#what-required-api-commands-must-a-cmp-support)

### How to decode the Consent-String

You can use this copy-paste a `Consent-String` on this page: [https://iabtcf.com/#/decode](<https://iabtcf.com/#/decode&#xA;&#xA;>).

* Reference: [IAB TCF Consent-String format](https://github.com/InteractiveAdvertisingBureau/GDPR-Transparency-and-Consent-Framework/blob/master/TCFv2/IAB%20Tech%20Lab%20-%20Consent%20string%20and%20vendor%20list%20formats%20v2.md)

### Google Additional Consent Mode

This an optional extension to IAB TCF.\
\
Once setup in TrustCommander Options, an additional `addtlConsent` property will be available on the `tcData` object.

```javascript
__tcfapi('addEventListener', 2, function(tcData, success) {
  if(success &&
    (tcData.eventStatus === 'tcloaded' || tcData.eventStatus === 'useractioncomplete')) {

    // do something with tcData.addtlConsent

  } else {

    // do something else

  }
});
```

* Reference: [Google Additional Consent Mode Technical Specification](https://support.google.com/admanager/answer/9681920?hl=en)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://community.commandersact.com/trustcommander/knowledge-base/iab-tcf-v2.0-consent.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
