with Smartlead and Backlog (API)?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smartlead: {
type: "app",
app: "smartlead",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://server.smartlead.ai/api/v1/client`,
params: {
api_key: `${this.smartlead.$auth.api_key}`,
},
})
},
})
The Backlog API provides a suite of functions for developers to integrate with and automate their project management needs. Through Pipedream, you can harness this API to create workflows that respond to events in Backlog, manipulate issues, track progress, and sync with other tools. This seamless integration allows you to streamline project management tasks, keep your team informed in real-time, and connect Backlog with other apps to enhance your productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
backlog_api: {
type: "app",
app: "backlog_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://xx.backlog.com/api/v2/users/myself`,
params: {
apiKey: `${this.backlog_api.$auth.api_key}`,
},
})
},
})