Magnetic

Magnetic Software is a single integrated cloud Project Management, Sales CRM & Accounts platform.

Go to site
Explore
/
Apps
/
Magnetic

Magnetic API Integrations

Build and run workflows using the Magnetic API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Magnetic API, you can build a variety of applications and integrations. Here are a few examples:

  • A CRM system for managing customer relationships
  • An eCommerce platform for selling products and services online
  • A project management tool for tracking tasks and deadlines
  • An invoicing system for generating and tracking invoices
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Authentication

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.