NetHunt is a Gmail CRM that brings sales automation and drip campaigns straight to your inbox.
NetHunt CRM API is a powerful tool that lets you build custom applications on
top of the NetHunt CRM platform. With the API, you can access data stored in
NetHunt CRM, including contacts, tasks, notes, deals, and more. You can also
use the API to create custom applications that interact with NetHunt CRM data.
The NetHunt CRM API is a REST API, so it can be used with any programming
language that supports making HTTP requests. In addition, the NetHunt CRM API
is fully documented, so you can easily find the information you need to get
started.
Here are some examples of what you can build with the NetHunt CRM API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nethunt_crm: {
type: "app",
app: "nethunt_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://nethunt.com/api/v1/zapier/triggers/readable-folder`,
auth: {
username: `${this.nethunt_crm.$auth.email_address}`,
password: `${this.nethunt_crm.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})