with Proposify and neetoCal?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proposify: {
type: "app",
app: "proposify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.proposify.com/user`,
headers: {
Authorization: `Bearer ${this.proposify.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neetocal: {
type: "app",
app: "neetocal",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.neetocal.$auth.subdomain}.neetocal.com/api/external/v1/bookings`,
headers: {
"x-api-key": `${this.neetocal.$auth.api_key}`,
},
})
},
})