with FullEnrich and Recruiterflow?
Check if the FullEnrich API key is valid. See the documentation
Starts the enrichment process for a specified contact. See the documentation
Provides the current balance of credits available in your workspace. See the documentation
Get the enrichment result for a specified contact. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recruiterflow: {
type: "app",
app: "recruiterflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://recruiterflow.com/api/external/user/list`,
headers: {
"rf-api-key": `${this.recruiterflow.$auth.api_key}`,
},
params: {
include_count: `true`,
},
})
},
})