SuperPhone is a communication platform that allows users to manage text and call campaigns through a personal phone number. Leveraging the SuperPhone API on Pipedream, you can automate interactions with contacts, send personalized messages, and get analytics on message deliverability and engagement. With Pipedream's serverless platform, you can trigger workflows on various events, like receiving a new message or a specific keyword, and connect to countless other apps to extend functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
superphone: {
type: "app",
app: "superphone",
}
},
async run({steps, $}) {
const data = {
"query": `{{your_query}}`, // such as "query testAuth {defaultForm {id}}"
}
return await axios($, {
method: "post",
url: `https://api.${this.superphone.$auth.environment}/graphql`,
headers: {
Authorization: `Bearer ${this.superphone.$auth.api_key}`,
"Accept": `application/json`,
},
data,
})
},
})
Automate Welcome Messages: When a new contact is added in SuperPhone, trigger a Pipedream workflow to send a personalized welcome text. This can help engage users right from the start without manual effort.
Sync Contacts with CRM: Whenever a contact is updated or tagged in SuperPhone, use a Pipedream workflow to sync this information with your CRM platform like Salesforce or HubSpot. This ensures your customer data is always up to date across all platforms.
Text-to-Email Campaigns: Create a Pipedream workflow that listens for specific keywords in incoming SuperPhone messages and automatically sends related promotional content or responses via an email marketing service like Mailchimp. This can bridge the gap between your SMS and email marketing efforts.
Triggered when a new contact is created. See the documentation
Triggered when a new message is received. See the documentation
SuperPhone uses API keys for authentication. When you connect your SuperPhone account, Pipedream securely stores the keys so you can easily authenticate to SuperPhone APIs in both code and no-code steps.
Sign in and copy your API key from the Public API Key settings.