Simple cold outreach for remote sales teams. Myphoner is a cold outreach platform that takes the complexity and guesswork out of cold calling.
Go to siteMyphoner API offers a streamlined approach to managing your lead tracking and cold calling workflow. By connecting Myphoner with Pipedream, you can automate lead distribution, follow-ups, and integrate with other CRMs or communication tools. Pipedream's serverless platform enables you to create custom workflows without managing infrastructure, letting you focus on improving sales processes, enhancing lead qualification, and nurturing customer relationships through automated, data-driven actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
myphoner: {
type: "app",
app: "myphoner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.myphoner.$auth.domain}.myphoner.com/api/v2/lists`,
headers: {
"Authorization": `Token ${this.myphoner.$auth.api_key}`,
"Accept": `application/json`,
"Content-type": `application/json`,
},
})
},
})
Lead Auto-Assignment and Notification: Automatically assign new leads to sales reps based on custom criteria such as geographic location or expertise. Once assigned, trigger a notification to the assigned rep via Slack or email, ensuring they can act on the lead promptly.
Scheduled Follow-Up Reminders: Configure a workflow to schedule follow-ups by creating tasks in project management tools like Trello or Asana when a lead moves to a specific stage in Myphoner. This helps in maintaining timely communication and keeping the sales pipeline active.
Lead Qualification and CRM Integration: Use Pipedream to listen for new leads or changes in lead status on Myphoner, evaluate their quality based on predefined metrics, and push the qualified leads to a CRM platform like Salesforce or HubSpot. This ensures that high-potential leads are nurtured with the appropriate resources.
Myphoner uses API keys for authentication. When you connect your Myphoner account, Pipedream securely stores the keys so you can easily authenticate to Myphoner APIs in both code and no-code steps.
https://1234.myphoner.com/
, your domain is 1234
.