CINC is the #1 real estate tech solution powering elite teams. Better Leads. Higher Conversion.
Go to siteThe 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}`,
},
})
},
})
Automated Lead Syncing with Google Sheets: Sync new leads from CINC to a Google Sheet in real-time. Whenever a lead is created in CINC, Pipedream triggers a workflow that appends the lead's details to a designated Google Sheet. This can help in maintaining an organized list for further analysis and follow-ups.
Real-Time SMS Notifications for New Leads: Send SMS notifications via Twilio when new leads register on CINC. Set up a Pipedream workflow to detect new leads in CINC and use Twilio to send a tailored message to an agent's phone, ensuring immediate engagement with potential clients.
Dynamic Email Campaigns with SendGrid: Trigger email campaigns from SendGrid in response to lead status updates in CINC. When a lead's status changes, Pipedream can initiate an email sequence through SendGrid, providing timely and relevant content to nurture leads through the sales funnel.
CINC uses OAuth authentication. When you connect your CINC account, Pipedream will open a popup window where you can sign into CINC and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any CINC API.
Pipedream requests the following authorization scopes when you connect your account:
api:read
api:create
api:event
GET
https://authv2.cincapi.com/integrator/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://authv2.cincapi.com/integrator/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://authv2.cincapi.com/integrator/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}