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,
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})