with GoFormz and BuySellAds?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goformz: {
type: "app",
app: "goformz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.goformz.com/v2/formz`,
headers: {
Authorization: `Bearer ${this.goformz.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
buysellads: {
type: "app",
app: "buysellads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://papi.buysellads.com/daily-stats`,
params: {
key: `${this.buysellads.$auth.api_key}`,
},
})
},
})