Skip to content

Commit 8e50a76

Browse files
authored
Fixed casing, backticks around URLs and added links to Search Ads and E Webhooks
1 parent bee7ddc commit 8e50a76

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/connections/destinations/catalog/actions-webhook-extensible/google-search-ads-integration-recipe.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Google Search Ads 360 Conversion API Integration Recipe
33
---
44

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.
66

77
## Prerequisites
88

@@ -35,18 +35,18 @@ To integrate Search Ads 360 with Twilio Segment, ensure you have the following:
3535

3636
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.
3737

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`.
3939

4040
#### Authentication
4141

4242
1. Select OAuth 2.0 and select Authorization Code.
4343
2. Enter the following credentials details from your project:
4444
- Client ID
4545
- Client secret
46-
- Authorize URL: https://accounts.google.com/o/oauth2/v2/auth
47-
- Token URL: https://oauth2.googleapis.com/token
48-
- Refresh URL: https://oauth2.googleapis.com/token
49-
- Scope: https://www.googleapis.com/auth/doubleclicksearch
46+
- Authorize URL: `https://accounts.google.com/o/oauth2/v2/auth`
47+
- Token URL: `https://oauth2.googleapis.com/token`
48+
- Refresh URL: `https://oauth2.googleapis.com/token`
49+
- Scope: `https://www.googleapis.com/auth/doubleclicksearch`
5050
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.
5151
4. Log in to your Google Search Ads account and click **Allow** to complete authentication.
5252

@@ -77,11 +77,11 @@ You will need to write an insert function that appends a property, for example o
7777
```
7878

7979
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.
8181
- `clickId` which is the ID of a specific click on an ad that the customer clicked on.
8282
- `conversionId` is a unique ID that tracks the particular conversion.
8383
- `conversionTimestamp` is date and time in epoch milliseconds on when the conversion took place.
84-
- `segmentationType` should be floodlight.
84+
- `segmentationType` should be `FLOODLIGHT`.
8585
- `segmentationName` is the floodlight activity to report this conversion to.
8686
- `type` which can be `Action` or `Transaction` to indicate whether the conversion had a monetary value or not.
8787

@@ -90,7 +90,7 @@ The Google Search Ads 360 Conversion API's required fields are:
9090
1. Create a new Mapping in the Mappings tab and select the **Send** HTTP action.
9191
2. Choose which events you want to send to Google Search Ads 360 API using the Event filters.
9292
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`
9494
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.
9595
5. Turn off batching for this operation.
9696

@@ -102,8 +102,8 @@ The Google Search Ads 360 Conversion API's required fields are:
102102
#### Troubleshooting
103103

104104
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.
107107

108108
### 7. Save and enable the destination
109109

0 commit comments

Comments
 (0)