with VerifiedEmail and Formidable Forms?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
verifiedemail: {
type: "app",
app: "verifiedemail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.verified.email/v1/apikeys`,
headers: {
Authorization: `Bearer ${this.verifiedemail.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
formidable_forms: {
type: "app",
app: "formidable_forms",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.formidable_forms.$auth.url}/wp-json/frm/v2/forms`,
auth: {
username: `${this.formidable_forms.$auth.api_key}`,
password: ``,
},
})
},
})