Based on your question, it seems you want to use the Google Ads Conversion API within a Pipedream workflow using Node.js, similar to how you might use an npm package. The JavaScript SDK you’re referring to is actually a Java library, which cannot be directly imported into a Node.js environment as you would with an npm package. However, you can interact with the Google Ads API using HTTP requests from Node.js. You would need to use the RESTful endpoints provided by the Google Ads API and make HTTP requests accordingly. Here’s an example of how you might set up a Pipedream component to make a request to the Google Ads API using Node.js: import { axios } from "@pipedream/platform"; export default defineComponent({ props: { google: { type: "app", app: "google", }, }, async run({ steps, $ }) { // You would replace the URL and body with the appropriate endpoint and payload // for the Google Ads Conversion API const url = `https://googleads.googleapis.com/v9/customers/{customerId}/conversions:uploadClickConversions`; const body = { // Your request body here }; return await axios($, { method: "POST", url: url, headers: { Authorization: `Bearer ${this.google.$auth.oauth_access_token}`, "Content-Type": "application/json", }, data: body, }); }, }); Please replace {customerId} with your actual Google Ads customer ID and construct the body variable with the appropriate payload as per the Google Ads API documentation. Remember, you’ll need to connect your Google account with the appropriate OAuth scopes to make requests to the Google Ads API. If you have any further questions or need assistance with the specific API endpoints or payload, please let me know!