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,
})
},
})
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
Icypeas uses API keys for authentication. When you connect your Icypeas account, Pipedream securely stores the keys so you can easily authenticate to Icypeas APIs in both code and no-code steps.
To retrieve your API Key,