Magnetic Software is a single integrated cloud Project Management, Sales CRM & Accounts platform.
Go to siteWith the Magnetic API, you can build a variety of applications and integrations. Here are a few examples:
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}`,
},
})
},
})
Magnetic uses API keys for authentication. When you connect your Magnetic account, Pipedream securely stores the keys so you can easily authenticate to Magnetic APIs in both code and no-code steps.
Your token can be found on your Personal Settings page, under the API section, here.