0

I'm using AdWords to help generate form submissions, and a form submission is my heuristic for a conversion.

I want to fetch the specific AdWords keyword that generated a conversion and submit it along with the form so that I can track which keyword are generating which submissions. Is this possible?

I don't see an cookie that relates to a Google Ad click, and the automatically appended gclid only contains a timestamp when decoded.

Tiocrash
  • 347
  • 5
  • 16

1 Answers1

2

If you are using autotagging in Adwords then you will not get the keyword in realtime to send it along with the form.

You would either need to use manual tagging, and extract the value from the utm_term parameter, or configure valuetrack parameters to have the keyword/matchtype in your destinantion url.

In both cases you'd need to store the value from the query parameter (e.g. in a cookie), read it in the page with the form and append a hidden form field to your form that is set to the proper value.

Eike Pierstorff
  • 31,996
  • 4
  • 43
  • 62
  • This is exactly what I needed. I also found this tutorial for manual tagging which was very helpful: https://docs.heapanalytics.com/docs/manual-and-autotagging-for-adwords – Tiocrash Apr 10 '18 at 22:57