with Adrapid and ContactOut?
Generates a new banner using provided data. This action can create different types of banners, such as animated HTML5, image, or video banners. See the documentation
Get company profiles matching the search criteria. See the documentation
Retrieves a specified banner. This action should be used after a 'create-banner' action to ensure that the banner is fully processed and ready for use. See the documentation
Get profiles of key decision makers within a specified company. See the documentation
Find LinkedIn profile from email address. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adrapid: {
type: "app",
app: "adrapid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.adrapid.com/me`,
headers: {
Authorization: `Bearer ${this.adrapid.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
contactout: {
type: "app",
app: "contactout",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.contactout.com/v1/stats`,
headers: {
"token": `${this.contactout.$auth.api_key}`,
},
params: {
period: `2025-06`,
},
})
},
})