{"id":8101,"date":"2026-08-10T10:23:00","date_gmt":"2026-08-10T08:23:00","guid":{"rendered":"https:\/\/www.lukaswojcik.com\/blog\/?p=8101"},"modified":"2026-08-10T10:23:00","modified_gmt":"2026-08-10T08:23:00","slug":"ga4-consent-mode-v2-decoding-gcd-parameter","status":"publish","type":"post","link":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/","title":{"rendered":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)"},"content":{"rendered":"\r\n<h1 class=\"wp-block-heading\">GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)<\/h1>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">In modern digital analytics architectures, verifying privacy compliance requires more than inspecting whether a cookie consent banner is displayed. While the standard <code>gcs<\/code> parameter in Google Analytics 4 (GA4) network requests provides a basic overview of consent (such as <code>g110<\/code> or <code>g111<\/code>), it lacks granular visibility into the underlying state machine. The true complexity of Google Consent Mode v2 is encoded within the cryptic <strong><code>gcd<\/code> parameter<\/strong> (e.g., <code>11r1r1r1r5<\/code>).<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">This technical deep dive breaks down the bit-logic of the <code>gcd<\/code> string, explains methods for debugging consent signals in Server-Side Google Tag Manager (ssGTM), and demonstrates how to identify race conditions between Consent Management Platforms (such as Usercentrics) and the initial pageview.<\/p>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">1. The Anatomy of the gcd Parameter<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Unlike <code>gcs<\/code>, which only reports whether advertising or analytics storage is granted or denied, the <code>gcd<\/code> parameter reveals the complete lifecycle of each consent signal. It indicates whether a parameter was set by a default command, updated by a user action, or left unconfigured.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">A typical <code>gcd<\/code> parameter string follows a structured pattern: <code>11&lt;ad_storage&gt;1&lt;analytics_storage&gt;1&lt;ad_user_data&gt;1&lt;ad_personalization&gt;5<\/code><\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Letter Code<\/th><th>Consent State<\/th><th>Origin \/ Meaning<\/th><\/tr><\/thead><tbody><tr><td><code>p<\/code><\/td><td>Denied (Default)<\/td><td>No default command was explicitly set; default denied applies.<\/td><\/tr><tr><td><code>q<\/code> \/ <code>r<\/code><\/td><td>Denied (Default)<\/td><td>Default state explicitly configured as denied via Consent Mode.<\/td><\/tr><tr><td><code>t<\/code><\/td><td>Granted (Default)<\/td><td>Default state explicitly configured as granted.<\/td><\/tr><tr><td><code>u<\/code><\/td><td>Denied (Update)<\/td><td>Updated to denied after a user interaction with the CMP.<\/td><\/tr><tr><td><code>v<\/code><\/td><td>Granted (Update)<\/td><td>Updated to granted after being default-denied.<\/td><\/tr><tr><td><code>l<\/code> \/ <code>m<\/code> \/ <code>n<\/code><\/td><td>Granted \/ Denied<\/td><td>Variations indicating specific CMP template or Tag Gateway configurations.<\/td><\/tr><\/tbody><\/table><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">For example, the value <code>gcd=11r1r1r1r5<\/code> translates to a strict default state where all four consent parameters (<code>ad_storage<\/code>, <code>analytics_storage<\/code>, <code>ad_user_data<\/code>, <code>ad_personalization<\/code>) are explicitly denied by default (<code>r<\/code>). Conversely, <code>gcd=11v1v1v1v5<\/code> confirms that an update event has successfully fired, switching all states to granted (<code>v<\/code>).<\/p>\r\n\r\n\r\n\r\n<figure class=\"lw-diagram\">\n<img loading=\"lazy\" src=\"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/diagrams\/ga4-consent-mode-v2-decoding-the-gcd-parameter-a-network-r-en.png\" width=\"1120\" height=\"366\" decoding=\"async\"\n     alt=\"Diagram for the article: Symptom, Root Cause, Architectural Fix\">\n<figcaption>The 3 building blocks of the article at a glance: Symptom, Root Cause, Architectural Fix.<\/figcaption>\n<\/figure>\n\n<h2 class=\"wp-block-heading\">2. Identifying CMP Race Conditions<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">A common architectural failure in web analytics is a race condition between the CMP (e.g., Usercentrics) and the firing of the first GA4 configuration tag. If a returning user with stored consent visits a page, but the network request contains <code>r<\/code> codes instead of <code>v<\/code> codes, the tracking tag executed before the CMP could push the consent update to the DataLayer.<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><strong>Symptom:<\/strong> First pageview request carries <code>gcd=11r1r1r1r5<\/code> (Default Denied), while subsequent events carry <code>gcd=11v1v1v1v5<\/code>.<\/li>\r\n\r\n\r\n<li><strong>Root Cause:<\/strong> The GA4 tag triggers on standard <em>All Pages (Page View)<\/em> or <em>Consent Initialization<\/em> without waiting for asynchronous CMP state resolution.<\/li>\r\n\r\n\r\n<li><strong>Architectural Fix:<\/strong> Configure standard tracking tags to fire strictly on custom CMP events (such as <code>consent_status<\/code>) or utilize the <code>wait_for_update<\/code> parameter with a 500ms threshold in the default consent snippet.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">3. Server-Side GTM Debugging &amp; Validation<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">In Server-Side Google Tag Manager (ssGTM), incoming GA4 HTTP requests serve as the carrier for all downstream tags, including Meta Conversions API (CAPI) and Google Ads Conversion Tracking. Inspecting the <code>gcd<\/code> parameter within the ssGTM Preview Mode is critical to prevent non-compliant data forwarding.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>\/\/ Example: Custom Variable logic in ssGTM to check ad_user_data update state\r\nconst gcd = getRequestQueryParameter(\"gcd\");\r\nif (gcd &amp;&amp; gcd.charAt(7) === \"v\") {\r\n  return true; \/\/ ad_user_data is granted via update\r\n}\r\nreturn false;<\/code><\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">By enforcing server-side trigger rules based on the decoded <code>gcd<\/code> state, data pipelines remain fully compliant with GDPR and the Digital Markets Act (DMA), ensuring zero marketing payloads are dispatched when consent remains in a default denied state.<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>A technical breakdown of the GA4 gcd parameter bit-logic, server-side debugging in ssGTM, and identifying CMP race conditions.<\/p>\n","protected":false},"author":1,"featured_media":9221,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[91040,91041,91258,91267,91061,91516],"class_list":["post-8101","post","type-post","status-publish","format-standard","hentry","category-digital-analytics","tag-consent-management","tag-consent-mode-v2","tag-google-analytics-4","tag-google-tag-manager","tag-server-side-gtm","tag-tracking"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive) - Lukas Wojcik - Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive) - Lukas Wojcik - Blog\" \/>\n<meta property=\"og:description\" content=\"A technical breakdown of the GA4 gcd parameter bit-logic, server-side debugging in ssGTM, and identifying CMP race conditions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/\" \/>\n<meta property=\"og:site_name\" content=\"Lukas Wojcik - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-10T08:23:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/08\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"luky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"luky\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/\"},\"author\":{\"name\":\"luky\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/#\\\/schema\\\/person\\\/895f7604f9b6b71aad9bba33af28d0f9\"},\"headline\":\"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)\",\"datePublished\":\"2026-08-10T08:23:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/\"},\"wordCount\":511,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/#\\\/schema\\\/person\\\/895f7604f9b6b71aad9bba33af28d0f9\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg\",\"keywords\":[\"Consent Management\",\"Consent Mode v2\",\"Google Analytics 4\",\"Google Tag Manager\",\"Server-Side GTM\",\"Tracking\"],\"articleSection\":[\"Digital Analytics\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/\",\"url\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/\",\"name\":\"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive) - Lukas Wojcik - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg\",\"datePublished\":\"2026-08-10T08:23:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg\",\"width\":1200,\"height\":630,\"caption\":\"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/en\\\/digital-analytics\\\/ga4-consent-mode-v2-decoding-gcd-parameter\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/\",\"name\":\"Lukas Wojcik - Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/#\\\/schema\\\/person\\\/895f7604f9b6b71aad9bba33af28d0f9\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/#\\\/schema\\\/person\\\/895f7604f9b6b71aad9bba33af28d0f9\",\"name\":\"luky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/lw-x2.jpg\",\"url\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/lw-x2.jpg\",\"contentUrl\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/lw-x2.jpg\",\"width\":424,\"height\":636,\"caption\":\"luky\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/lw-x2.jpg\"},\"sameAs\":[\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.lukaswojcik.com\\\/blog\\\/author\\\/luky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive) - Lukas Wojcik - Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/","og_locale":"en_US","og_type":"article","og_title":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive) - Lukas Wojcik - Blog","og_description":"A technical breakdown of the GA4 gcd parameter bit-logic, server-side debugging in ssGTM, and identifying CMP race conditions.","og_url":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/","og_site_name":"Lukas Wojcik - Blog","article_published_time":"2026-08-10T08:23:00+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/08\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg","type":"image\/jpeg"}],"author":"luky","twitter_card":"summary_large_image","twitter_misc":{"Written by":"luky","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#article","isPartOf":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/"},"author":{"name":"luky","@id":"https:\/\/www.lukaswojcik.com\/blog\/#\/schema\/person\/895f7604f9b6b71aad9bba33af28d0f9"},"headline":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)","datePublished":"2026-08-10T08:23:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/"},"wordCount":511,"commentCount":0,"publisher":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/#\/schema\/person\/895f7604f9b6b71aad9bba33af28d0f9"},"image":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/08\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg","keywords":["Consent Management","Consent Mode v2","Google Analytics 4","Google Tag Manager","Server-Side GTM","Tracking"],"articleSection":["Digital Analytics"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/","url":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/","name":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive) - Lukas Wojcik - Blog","isPartOf":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#primaryimage"},"image":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/08\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg","datePublished":"2026-08-10T08:23:00+00:00","breadcrumb":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#primaryimage","url":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/08\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg","contentUrl":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/08\/fi-8101-ga4-consent-mode-v2-decoding-the-gcd-parameter-a-net.jpg","width":1200,"height":630,"caption":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)"},{"@type":"BreadcrumbList","@id":"https:\/\/www.lukaswojcik.com\/blog\/en\/digital-analytics\/ga4-consent-mode-v2-decoding-gcd-parameter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.lukaswojcik.com\/blog\/"},{"@type":"ListItem","position":2,"name":"GA4 Consent Mode v2: Decoding the gcd Parameter (A Network Request Deep Dive)"}]},{"@type":"WebSite","@id":"https:\/\/www.lukaswojcik.com\/blog\/#website","url":"https:\/\/www.lukaswojcik.com\/blog\/","name":"Lukas Wojcik - Blog","description":"","publisher":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/#\/schema\/person\/895f7604f9b6b71aad9bba33af28d0f9"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lukaswojcik.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.lukaswojcik.com\/blog\/#\/schema\/person\/895f7604f9b6b71aad9bba33af28d0f9","name":"luky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/07\/lw-x2.jpg","url":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/07\/lw-x2.jpg","contentUrl":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/07\/lw-x2.jpg","width":424,"height":636,"caption":"luky"},"logo":{"@id":"https:\/\/www.lukaswojcik.com\/blog\/wp-content\/uploads\/2026\/07\/lw-x2.jpg"},"sameAs":["https:\/\/www.lukaswojcik.com\/blog"],"url":"https:\/\/www.lukaswojcik.com\/blog\/author\/luky\/"}]}},"_links":{"self":[{"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/posts\/8101","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/comments?post=8101"}],"version-history":[{"count":1,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/posts\/8101\/revisions"}],"predecessor-version":[{"id":9399,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/posts\/8101\/revisions\/9399"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/media\/9221"}],"wp:attachment":[{"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/media?parent=8101"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/categories?post=8101"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.lukaswojcik.com\/blog\/wp-json\/wp\/v2\/tags?post=8101"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}