with Smartlead and Magnetic?
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}`,
},
})
},
})
Magnetic is a project management and workflow automation platform designed to help agencies stay organized and streamline operations. With the Magnetic API on Pipedream, you can automate routine tasks, sync data across various apps, and create custom workflows to enhance productivity. From task creation and time tracking to financial management and reporting, Pipedream’s serverless execution model lets you connect Magnetic with a plethora of other services without the need for a dedicated server setup.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
magnetic: {
type: "app",
app: "magnetic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.magnetichq.com/Magnetic/rest/coreAPI/users`,
params: {
token: `${this.magnetic.$auth.token}`,
},
})
},
})