with NeetoForm and The Official Board?
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
the_official_board: {
type: "app",
app: "the_official_board",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.theofficialboard.com/rest/test/token`,
headers: {
"accept": `application/json`,
"token": `${this.the_official_board.$auth.api_token}`,
},
})
},
})