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
The CINC (Commissions Inc) API provides a suite of tools tailored for real estate professionals seeking to enhance lead generation, manage clients, and streamline operations. By leveraging the CINC API on Pipedream, users can create automated workflows to sync leads, manage contacts, and trigger custom real-time actions based on client interactions and data changes. Pipedream's serverless platform allows for seamless integration between CINC and various other services, enabling agents and agencies to improve efficiency and stay ahead in the competitive real estate market.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cinc: {
type: "app",
app: "cinc",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public.cincapi.com/v2/site/me`,
headers: {
Authorization: `Bearer ${this.cinc.$auth.oauth_access_token}`,
},
})
},
})