Cloze automatically keeps track of your email, phone calls, text messages, meetings, documents, Evernote, LinkedIn, Facebook, and Twitter.
Go to siteThe Cloze API enables you to access and manage your Cloze CRM data programmatically. In Pipedream, you can create powerful, serverless workflows that react to events or run on schedules to automate tasks involving Cloze data. You could synchronize contacts, track communication history, or trigger actions based on updates in Cloze. By leveraging Pipedream's capacity to connect to a myriad of services, you can create multi-step workflows that involve other apps to streamline your business processes and harness the full potential of CRM automation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cloze: {
type: "app",
app: "cloze",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.cloze.com/v1/profile`,
headers: {
Authorization: `Bearer ${this.cloze.$auth.oauth_access_token}`,
},
})
},
})
Sync New Contacts to a Google Sheet: Whenever you add a new contact in Cloze, this workflow triggers and appends their details to a Google Sheet. It's useful for maintaining a backup or for sharing contact information with team members who prefer working directly from spreadsheets.
Create Cloze Tasks from Incoming Emails: This workflow monitors an email inbox (like Gmail) for specific keywords or senders using Pipedream's built-in email trigger. When a matching email arrives, it automatically creates a task in Cloze, ensuring that you follow up on important messages promptly without manual intervention.
Notify Team on Slack for Cloze Pipeline Updates: Stay updated on your sales pipeline without constantly checking Cloze. This workflow listens for updates to deals in Cloze and sends a notification with the deal details to a designated Slack channel. This keeps your team informed in real time about potential opportunities or actions required.
Emit new event when significant changes regarding a company are detected. See the documentation.
Emit new event when significant changes happen to a person. See the documentation.
Emit new event when a significant change occurs in a project. See the documentation.
Create a new company or enhance an existing company within Cloze. Companies can be created with just a domain name or both a name and another unique identifier such as a phone number and email address. See the documentation.
Create a new project or merge updates into an existing one. See the documentation.
Cloze uses OAuth authentication. When you connect your Cloze account, Pipedream will open a popup window where you can sign into Cloze and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Cloze API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://www.cloze.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://www.cloze.com/oauth/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://www.cloze.com/oauth/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}}