You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/destinations/catalog/actions-webhook-extensible/google-search-ads-integration-recipe.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Google Search Ads 360 Conversion API Integration Recipe
3
3
---
4
4
5
-
This recipe will guide you through how to set up a custom destination for Google Search Ads 360 conversions using Twilio Segment’s Extensible Webhooks feature.
5
+
This recipe will guide you through how to set up a custom destination for [Google Search Ads 360](https://marketingplatform.google.com/intl/en_uk/about/search-ads-360/){:target="_blank"} conversions using Twilio Segment’s [Extensible Webhooks](https://segment.com/docs/connections/destinations/catalog/actions-webhook-extensible/){:target="_blank"} feature.
6
6
7
7
## Prerequisites
8
8
@@ -35,18 +35,18 @@ To integrate Search Ads 360 with Twilio Segment, ensure you have the following:
35
35
36
36
As a prerequisite to authenticate APIs, you need to create OAuth credentials. Once generated, note down the Client ID and Secret. They are required to set up authentication between Segment and Google Search Ads.
37
37
38
-
You will also need to add the following redirect URI to the list of allowed return URLs: https://app.segment.com/oauth-service/webhook/callback.
38
+
You will also need to add the following redirect URI to the list of allowed return URLs: `https://app.segment.com/oauth-service/webhook/callback`.
39
39
40
40
#### Authentication
41
41
42
42
1. Select OAuth 2.0 and select Authorization Code.
43
43
2. Enter the following credentials details from your project:
3. Once you have created the destination instance, you will be redirected to the Settings section. Click **Connect** to set up the OAuth connection with Google Search Ads 360.
51
51
4. Log in to your Google Search Ads account and click **Allow** to complete authentication.
52
52
@@ -77,11 +77,11 @@ You will need to write an insert function that appends a property, for example o
77
77
```
78
78
79
79
The Google Search Ads 360 Conversion API's required fields are:
80
-
-`kind` which is "doubleclicksearch#conversionList". Conversion is an array. For the beta, Segment doesn’t support batching to iterate over this.
80
+
-`kind` which is `doubleclicksearch#conversionList`. Conversion is an array. For the beta, Segment doesn’t support batching to iterate over this.
81
81
-`clickId` which is the ID of a specific click on an ad that the customer clicked on.
82
82
-`conversionId` is a unique ID that tracks the particular conversion.
83
83
-`conversionTimestamp` is date and time in epoch milliseconds on when the conversion took place.
84
-
-`segmentationType` should be floodlight.
84
+
-`segmentationType` should be `FLOODLIGHT`.
85
85
-`segmentationName` is the floodlight activity to report this conversion to.
86
86
-`type` which can be `Action` or `Transaction` to indicate whether the conversion had a monetary value or not.
87
87
@@ -90,7 +90,7 @@ The Google Search Ads 360 Conversion API's required fields are:
90
90
1. Create a new Mapping in the Mappings tab and select the **Send** HTTP action.
91
91
2. Choose which events you want to send to Google Search Ads 360 API using the Event filters.
92
92
3. Fill out mapping fields:
93
-
- Specify the URL: https://www.googleapis.com/doubleclicksearch/v2/conversion
93
+
- Specify the URL: `https://www.googleapis.com/doubleclicksearch/v2/conversion`
94
94
4. Use the mapping interface and search for the “body” parameter that was created in the insert function to select the transformed object that can be sent as the event body.
95
95
5. Turn off batching for this operation.
96
96
@@ -102,8 +102,8 @@ The Google Search Ads 360 Conversion API's required fields are:
102
102
#### Troubleshooting
103
103
104
104
If the test fails:
105
-
-review the authentication details and data mappings.
106
-
-check for error messages in Segment and Search Ads.
105
+
-Review the authentication details and data mappings.
106
+
-Check for error messages in Segment and Search Ads.
0 commit comments