Shopware Extensions
English
English
  • Shop Studio Docs
  • Extensions
    • Pixel Your Shop
      • Installation
      • Tracking
        • Google Analytics Tracking
        • Google Ads Tracking
        • Google Tag Manager
        • Facebook Tracking
        • Microsoft Advertising
        • Instagram Tracking
        • Pinterest Tracking
        • Hotjar Tracking
      • Cookie Consent
        • Shopware
        • Cookie Bot
      • Development
        • Debug
        • Change default events
      • Need help?
    • Resend order confirmation mail
      • Installation
      • Resend email
      • Need help?
    • Recipes
      • Installation
      • Setup
      • Create & publish recipes
      • Set up PDFs
      • Need help?
    • Blog/Magazine
      • Installation
      • Setup
      • Create & publish posts
      • Need help?
    • Advanced Search (Blog + Recipes)
      • Installation
      • Need help?
    • Hotjar
      • Installation
      • Setup
      • Need help?
    • Google Tag Manager
      • Installation
      • Setup
      • Events
      • Need help?
    • Personalized customer greeting
      • Installation
      • Setup
      • Change Snippets
      • Need help?
    • Google Ads
      • Installation
      • Setup
      • How to get Conversion ID and label
      • Dynamic remarketing setup
      • Conversions und events
      • Need help?
    • Back in stock notification
      • Installation
      • Setup
      • Common sources of errors
      • Need help?
    • Microsoft Advertising
      • Installation
      • Need Help?
    • Tree per order
      • Installation
      • Setup
        • TreeMates as provider
        • Custom provider
      • How it works
        • TreeMates as provider
        • Custom provider
      • Export
      • Common sources of error
      • Need help?
    • Health Check
      • Installation
      • Setup
      • Program additional checks
      • Need help?
    • Nutrition Labeling
      • Installation
      • Setup
      • Need help?
    • Product Mix Configurator
      • Installation
  • tracking
Powered by GitBook
On this page
  • Add to cart
  • Begin checkout
  • Checkout progress
  • Login
  • Purchase
  • Remove from cart
  • Search
  • Sign up
  • View item
  • View item list
  • View product search results

Was this helpful?

  1. Extensions
  2. Google Ads

Conversions und events

Here you can find a detailed overview with example data, which conversions and events are transferred to with which data are transferred to Google Ads.

Add to cart

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Dynamic remarketing (add_to_cart):

{
    'value': 9.99,
    'currency': 'EUR',
    'items': [
        {
            'google_business_vertical': 'retail',
            'id': 'SW-123456',
            'name': 'Jeans',
            'price': 9.99,
            'currency': 'EUR',
            'quantity': 1,
            'variant': 'Blue'
        }
    ]
}

Begin checkout

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Checkout progress

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Login

{
    'send_to': `conversion-id/conversion-label`,
}

Purchase

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Dynamic remarketing (purchase):

{
    'transaction_id': 'SW-123456',
    'value': 10,
    'currency': 'EUR',
    'tax': 1.9,
    'shipping': 0,
    'affiliation': 'facebook/post',
    'coupon': 'DISCOUNT-20',
    'items': [
        {
            'google_business_vertical': 'retail',
            'id': 'SW-123456',
            'name': 'Jeans',
            'price': 9.99,
            'currency': 'EUR',
            'quantity': 1,
            'variant': 'Blue'
        }
    ]
}

Remove from cart

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Search

{
    'send_to': `conversion-id/conversion-label`,
}

Sign up

{
    'send_to': `conversion-id/conversion-label`,
}

View item

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Dynamic remarketing (view_item):

{
    'value': 9.99,
    'currency': 'EUR',
    'items': [
        {
            'google_business_vertical': 'retail',
            'id': 'SW-123456',
            'name': 'Jeans',
            'price': 9.99,
            'currency': 'EUR',
            'quantity': 1,
            'variant': 'Blue'
        }
    ]
}

View item list

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Dynamic remarketing (view_item_list):

{
    'value': 10,
    'currency': 'EUR',
    'items': [
        {
            'google_business_vertical': 'retail',
            'id': 'SW-123456',
            'name': 'Jeans',
            'price': 9.99,
            'currency': 'EUR',
            'quantity': 1,
            'variant': 'Blue'
        }
    ]
}

View product search results

{
    'send_to': `conversion-id/conversion-label`,
    'value': 9.99,
    'currency': 'EUR'
}

Dynamic remarketing (view_search_results):

{
    'search_term': 'jeans',
    'items': [
        {
            'google_business_vertical': 'retail',
            'id': 'SW-123456',
            'name': 'Jeans',
            'price': 9.99,
            'currency': 'EUR',
            'quantity': 1,
            'variant': 'Blue'
        }
    ]
}
PreviousDynamic remarketing setupNextNeed help?

Last updated 3 years ago

Was this helpful?