with InsertChat and Productboard?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
insertchat: {
type: "app",
app: "insertchat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.insertchat.com/v1/${this.insertchat.$auth.app_uid}/accounts`,
headers: {
Authorization: `Bearer ${this.insertchat.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})