with Google Marketplace and EmailVerify.io?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_marketplace: {
type: "app",
app: "google_marketplace",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://appsmarket.googleapis.com/appsmarket/v2/licenseNotification/${this.google_marketplace.$auth.application_id}`,
headers: {
Authorization: `Bearer ${this.google_marketplace.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailverify_io: {
type: "app",
app: "emailverify_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.emailverify.io/api/v1/validate`,
params: {
key: `${this.emailverify_io.$auth.api_key}`,
email: `integrations@pipedream.com`,
},
})
},
})