Merchant Center helps businesses promote their products across Google.
Go to siteThe Google Merchant Center API allows for programmatic interaction with your Google Merchant account, enabling data uploads, fetching product status, and managing listings directly. By leveraging this API within Pipedream, you can automate numerous tasks, such as syncing inventory levels, updating pricing, or managing product information across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_merchant_center: {
type: "app",
app: "google_merchant_center",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_merchant_center.$auth.oauth_access_token}`,
},
})
},
})
Automate Product Listings Updates: Use the API to watch for changes in your inventory database and automatically update product listings in Google Merchant Center when stock levels or prices change.
Sync Orders with CRM: After a purchase is made through a Google Shopping ad, trigger a workflow to create or update the customer data and order details in your CRM system.
Monitor Product Status Reports: Set up a Pipedream workflow to periodically fetch and analyze product status reports from Google Merchant Center. Notify your team via Slack or email if there are any issues that need attention.
Creates a product in your Google Merchant Center account. See the documentation
Updates an existing product in your Google Merchant Center account. See the documentation
Google Merchant Center uses OAuth authentication. When you connect your Google Merchant Center account, Pipedream will open a popup window where you can sign into Google Merchant Center and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Google Merchant Center API.
Pipedream requests the following authorization scopes when you connect your account:
email
profile
https://www.googleapis.com/auth/content
GET
https://accounts.google.com/o/oauth2/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
&
prompt=consent
&
access_type=offline
POST
https://oauth2.googleapis.com/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://oauth2.googleapis.com/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}