with verifi.email and DrChrono?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
verifi_email: {
type: "app",
app: "verifi_email",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.verifi.email/check`,
params: {
token: `${this.verifi_email.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
drchrono: {
type: "app",
app: "drchrono",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.drchrono.com/api/users`,
headers: {
Authorization: `Bearer ${this.drchrono.$auth.oauth_access_token}`,
},
})
},
})