JustCall by SaaS Labs is a cloud-based phone and SMS system that enables businesses of all sizes to make and receive phone calls/texts from anywhere.
Go to siteThe JustCall API allows for the automation and integration of telephony services into diverse workflows, enabling users to effectively manage calls and SMS within their business processes. By leveraging Pipedream's capabilities, one can create custom event-driven automation that responds to various triggers from JustCall, such as incoming/outgoing call events or new SMS messages, and connects them with over 300+ apps available on the Pipedream platform. This enables seamless data flow and interaction between JustCall and CRM systems, helpdesk software, marketing automation tools, and more, optimizing communication strategies and improving customer engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
justcall: {
type: "app",
app: "justcall",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.justcall.io/v1/users/list`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.justcall.$auth.api_key}:${this.justcall.$auth.api_secret}`,
},
})
},
})
Sync JustCall Contacts with CRM: Automatically update CRM contacts when new contacts are added in JustCall. For instance, create a workflow that adds a new contact to Salesforce whenever a new contact is created in JustCall, ensuring that your sales team always has the latest information at their fingertips.
Log JustCall Call Records: Integrate JustCall with Google Sheets to log call details. Each time a call is made or received in JustCall, log the call information, including timestamp, caller ID, and call duration, into a Google Sheet. This can be invaluable for sales teams to track customer interactions and for customer support to maintain detailed records.
Automate SMS Campaigns: Connect JustCall with marketing platforms like Mailchimp to trigger SMS campaigns. When a subscriber status changes in Mailchimp, use Pipedream to send a personalized SMS via JustCall, enhancing subscriber engagement with timely and relevant messages based on their interactions with your emails.
Add a contact to your existing JustCall Sales Dialer campaign. See the documentation
Send a text from your JustCall SMS capabled number. See the documentation
JustCall uses API keys for authentication. When you connect your JustCall account, Pipedream securely stores the keys so you can easily authenticate to JustCall APIs in both code and no-code steps.
Sign in to your JustCall account, and click on your profile icon in the top-right hand side of the page.
Click "Settings" >> "Developers" and copy your API Key and API Secret below.