Streak is a flexible CRM and process management system that lives inside your Gmail inbox.
Go to siteThe Streak API taps into the core of Streak’s CRM functionality within Gmail, allowing users to automate interactions with pipeline data, such as leads, contacts, and sales opportunities. With Pipedream, you can harness this API to craft serverless workflows that react to events in Streak and connect with countless other services to streamline CRM tasks, sync data across platforms, or trigger communications based on pipeline changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
streak: {
type: "app",
app: "streak",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.streak.com/api/v1/users/me`,
auth: {
username: `${this.streak.$auth.api_key}`,
password: ``,
},
})
},
})
Automated Lead Follow-Up Emails: Trigger an automated email sequence when a new lead is added to a Streak pipeline, using Gmail or a third-party email service. Tailor follow-up content based on lead data from Streak to create a personalized touch without manual effort.
Pipeline Change Notifications: Send real-time alerts via Slack or another messaging platform when a deal moves to a new stage in your Streak pipeline. Keep the team instantly informed about progress without them having to constantly check their CRM.
Data Synchronization with Google Sheets: Automatically export new and updated pipeline data to a Google Sheet for reporting and analysis. Use this to keep backup records, generate custom reports, or feed data into other analytics tools for deeper insights.
Emit new event when a box's stage is updated in a pipeline.
Emit new event when a new comment is created within a pipeline.
Emit new event when a new contact is created within a team.
Streak uses API keys for authentication. When you connect your Streak account, Pipedream securely stores the keys so you can easily authenticate to Streak APIs in both code and no-code steps.
After completing installation of Streak CRM on your browser, navigate to Gmail, click on the Streak icon in the right sidebar, and select the Integrations button.