The all-in-one CRM and email marketing platform that helps B2B organizations work together to win more deals.
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
The Nutshell API allows you to access and manage data within the Nutshell CRM platform, enabling you to automate tasks, sync information across apps, and build custom integrations. With Pipedream, these capabilities are harnessed through serverless workflows that can trigger actions within Nutshell or react to events, all with minimal setup. You can create leads, update contacts, manage sales processes, and more, all in a scalable and efficient manner.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nutshell: {
type: "app",
app: "nutshell",
}
},
async run({steps, $}) {
const data = {
"id": "apeye",
"method": "getUser",
}
return await axios($, {
url: `https://${this.nutshell.$auth.api}/api/v1/json`,
auth: {
username: `${this.nutshell.$auth.email}`,
password: `${this.nutshell.$auth.password}`,
},
data,
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})