with eGestor and NeetoForm?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
egestor: {
type: "app",
app: "egestor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.egestor.com.br/api/v1/usuarios`,
headers: {
Authorization: `Bearer ${this.egestor.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetoform: {
type: "app",
app: "neetoform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetoform.$auth.subdomain}.neetoform.com/api/external/v1/forms`,
headers: {
"x-api-key": `${this.neetoform.$auth.api_key}`,
},
})
},
})