with Google Ads and GitHub?
Emit new event when a new campaign is created. See the documentation
Emit new event for new leads on a Lead Form. See the documentation
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Adds a contact to a specific customer list in Google Ads. Lists typically update in 6 to 12 hours after operation. See the documentation
Create a new customer list in Google Ads. See the documentation
Find issues and pull requests by state and keyword. See the documentation
Generates a report from your Google Ads data. See the documentation
The Google Ads API lets you programmatically manage your Google Ads data and
campaigns. You can use the API to automate common tasks, such as:
You can also use the API to get information about your campaigns, such as:
The Google Ads API is a powerful tool that lets you manage your Google Ads data
and campaigns programmatically. With the API, you can automate common tasks,
such as creating and managing campaigns, adding and removing keywords, and
adjusting bids. You can also use the API to get information about your
campaigns, such as campaign stats, keyword stats, and ad performance.
The Pipedream components interact with Google Ads API through an interal proxy service, which protects Pipedream's developer token.
The component accepts a standard Google Ads API request object with the following structure:
const googleAdsReq = {
method: "get|post|put|delete", // HTTP method
url: "/v18/...", // Google Ads API endpoint path
headers: {
Authorization: `Bearer ${this.googleAds.$auth.oauth_access_token}`,
},
data: {}, // Optional request body for POST/PUT requests
};
To make different API calls while using the proxy:
url
path to match your desired Google Ads API endpointmethod
to match the required HTTP methoddata
fieldExample for a custom query:
const googleAdsReq = {
method: "post",
url: "/v16/customers/1234567890/googleAds:search",
headers: {
Authorization: `Bearer ${this.googleAds.$auth.oauth_access_token}`,
},
data: {
query: "SELECT campaign.id, campaign.name FROM campaign",
},
};
The proxy endpoint will remain the same: https://googleads.m.pipedream.net
To interface with Google Ads via the Connect API Proxy, you need to nest the request like this:
Important notes:
https://googleads.m.pipedream.net
url
param in the body
method
to the Connect Proxy should always be a POST
, since it's actually targeting the Google Ads proxy (you can define the method for the Google Ads request in options.body.method
)const pd = createBackendClient({
apiHost: process.env.API_HOST,
credentials: {
clientId: process.env.CLIENT_ID,
clientSecret: process.env.CLIENT_SECRET,
},
environment: process.env.ENVIRONMENT,
projectId: process.env.PROJECT_ID,
});
const pdGoogleAdsUrl = "https://googleads.m.pipedream.net";
const resp = await pd.makeProxyRequest(
{
searchParams: {
external_user_id: process.env.EXTERNAL_USER_ID,
account_id: process.env.ACCOUNT_ID,
},
},
{
url: pdGoogleAdsUrl,
options: {
method: "POST",
body: {
url: "/v19/customers:listAccessibleCustomers",
method: "GET",
// data: {} // If you need to send a body with a POST request, define it here
},
},
}
);
https://googleads.m.pipedream.net
curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/proxy/{url_safe_base64_encoded_url}?external_user_id={external_user_id}&account_id={apn_xxxxxxx}" \
-H "Authorization: Bearer {access_token}" \
-H "x-pd-environment: {development | production}" \
-d '{
"url": "/v19/customers:listAccessibleCustomers",
"method": "GET",
# "data": {} # If you need to send a body with a POST request, define it here
}'
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
googleAds: { type: "app", app: "google_ads" }
},
async run({ $ }) {
const googleAdsReq = {
method: "get",
url: "/v19/customers:listAccessibleCustomers",
headers: {
"Authorization": `Bearer ${this.googleAds.$auth.oauth_access_token}`,
// "login-customer-id": this.googleAds.$auth.customer_id // optional for this endpoint
}
}
// proxy google ads request
return await axios($, {
url: "https://googleads.m.pipedream.net",
data: googleAdsReq,
})
}
})
The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})