with Stack Overflow for Teams and HUB Planner?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stack_overflow_for_teams: {
type: "app",
app: "stack_overflow_for_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.stackoverflowteams.com/2.3/users`,
headers: {
"x-api-access-token": `${this.stack_overflow_for_teams.$auth.api_access_token}`,
},
params: {
order: `desc`,
team: `${this.stack_overflow_for_teams.$auth.team_slug}`,
},
})
},
})
The HUB Planner API is a toolset for managing resources, projects, and bookings in a visual and interactive way. By using the API with Pipedream, you can automate complex workflows, sync data across multiple platforms, and create custom integrations to streamline operations. From scheduling resources to analyzing project data, the opportunities are vast for enhancing project management efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hub_planner: {
type: "app",
app: "hub_planner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubplanner.com/v1/project`,
headers: {
"Authorization": `${this.hub_planner.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})