NoCRM.io is a CRM platform that offers a powerful API that developers can use to power custom applications and integrations. With it, you can build applications to help organize customers, products, marketing campaigns, sales processes, and much more.
Here are some examples of what you can create with the NoCRM.io API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nocrm_io: {
type: "app",
app: "nocrm_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.nocrm_io.$auth.subdomain}.nocrm.io/api/v2/users`,
headers: {
"X-API-KEY": `${this.nocrm_io.$auth.api_key}`,
},
})
},
})
noCRM.io uses API keys for authentication. When you connect your noCRM.io account, Pipedream securely stores the keys so you can easily authenticate to noCRM.io APIs in both code and no-code steps.
Your noCRM.io API key is in your Profile > Admin Panel page, below the API section inside the Integrations card.
If your Nocrm.io URL is https://1234.nocrm.io.com/
, your subdomain is 1234
.