with Swapcard Exhibitor and ProdPad?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapcard_exhibitor: {
type: "app",
app: "swapcard_exhibitor",
}
},
async run({steps, $}) {
const data = {
"query": "query TestQuery { __typename }"
}
return await axios($, {
method: "post",
url: `https://developer.swapcard.com/exhibitor/graphql`,
headers: {
"Authorization": `${this.swapcard_exhibitor.$auth.api_key}`,
"x-apollo-operation-name": `TestQuery`,
},
data,
})
},
})
The ProdPad API taps into the core functionalities of product management, allowing you to automate interactions with your product backlog, roadmaps, and idea pools. With Pipedream's serverless execution environment, you can trigger workflows based on events in ProdPad, sync data across multiple platforms, and create custom automations to streamline your product management processes. ProdPad's API lets you seamlessly integrate with other tools to keep your team aligned, informed, and productive.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
prodpad: {
type: "app",
app: "prodpad",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.prodpad.com/v1/users`,
headers: {
Authorization: `Bearer ${this.prodpad.$auth.api_key}`,
},
})
},
})