Icypeas helps businesses find contact data.
Performs a search using a domain or company name as input. See the documentation
Retrieves a result from a single search instance. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
icypeas: {
type: "app",
app: "icypeas",
}
},
async run({steps, $}) {
const data = {
"email": `${this.icypeas.$auth.email}`,
}
return await axios($, {
method: "post",
url: `https://app.icypeas.com/api/a/actions/subscription-information`,
headers: {
"Content-Type": `application/json`,
"Authorization": `${this.icypeas.$auth.api_key}`,
},
data,
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.