with Explorium and Productboard?
Emit new event when a business update occurs. See the documentation
Emit new event when a prospect update occurs. See the documentation
Enrich business data with comprehensive insights for lead generation, risk assessment, and business intelligence. See the documentation
Enrich prospect records with comprehensive professional and contact information to enhance outreach and engagement strategies. See the documentation
Fetches business records using filters. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
explorium: {
type: "app",
app: "explorium",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.explorium.ai/v1/credits`,
headers: {
"api_key": `${this.explorium.$auth.api_key}`,
},
})
},
})
The Productboard API offers a way to extend the capabilities of Productboard, a product management platform that helps teams organize and prioritize user feedback and feature requests. By leveraging this API on Pipedream, you can automate repetitive tasks, sync data across various apps, and create custom integrations to streamline your product management process. This can include automating feedback collection, updating roadmaps, or coordinating cross-functional team efforts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
productboard: {
type: "app",
app: "productboard",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.productboard.com/features`,
headers: {
Authorization: `Bearer ${this.productboard.$auth.api_key}`,
},
})
},
})