Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Modifies an existing contact within the 1CRM system. See the documentation
The 1CRM API enables robust integration of 1CRM systems with external applications, facilitating automated workflows and data synchronization. With Pipedream, you can leverage this API to connect 1CRM with hundreds of other services, automate repetitive tasks, streamline sales processes, and enhance customer relationship management. By creating workflows on Pipedream, you can trigger actions in 1CRM based on events from other apps, manipulate and analyze CRM data, and improve overall business efficiency without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_1crm: {
type: "app",
app: "_1crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this._1crm.$auth.url}/api.php/me`,
auth: {
username: `${this._1crm.$auth.username}`,
password: `${this._1crm.$auth.password}`,
},
})
},
})