import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fullenrich: {
type: "app",
app: "fullenrich",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.fullenrich.com/api/v1/account/credits`,
headers: {
Authorization: `Bearer ${this.fullenrich.$auth.api_key}`,
},
})
},
})
Starts the enrichment process for a specified contact. See the documentation
Get the enrichment result for a specified contact. See the documentation.
FullEnrich uses API keys for authentication. When you connect your FullEnrich account, Pipedream securely stores the keys so you can easily authenticate to FullEnrich APIs in both code and no-code steps.