with Minform and AlgoDocs?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
minform: {
type: "app",
app: "minform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://minform.io/api/pipedream/forms`,
headers: {
Authorization: `Bearer ${this.minform.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
algodocs: {
type: "app",
app: "algodocs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.algodocs.com/v1/me`,
headers: {
"x-api-key": `${this.algodocs.$auth.api_key}`,
},
})
},
})