with Yay.com and CloudFill?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yay_com: {
type: "app",
app: "yay_com",
}
},
async run({steps, $}) {
const data = {
"a": `h`,
}
return await axios($, {
url: `https://${this.yay_com.$auth.api_hostname}/authenticated`,
headers: {
"x-auth-reseller": `${this.yay_com.$auth.reseller}`,
"x-auth-user": `${this.yay_com.$auth.user}`,
"x-auth-password": `${this.yay_com.$auth.password}`,
},
data,
})
},
})
The CloudFill API specializes in automatic form filling, allowing you to pre-fill web forms with accurate and up-to-date information programmatically. With CloudFill on Pipedream, you can create serverless workflows that trigger form filling operations, handle data extracted from forms, and connect to other apps to streamline complex tasks like data entry, customer onboarding, and lead generation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cloudfill: {
type: "app",
app: "cloudfill",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cloudfill.io/api/meta/pdf/`,
headers: {
"X-API-Key": `${this.cloudfill.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})