Social Intents is a social apps platform that allows live chat with website visitors to offer great customer service and sell more right from MS Teams, Slack, Zoom, or Webex.
The Social Intents API enables seamless integration of live chat, customer feedback, and email list building services into your digital platforms. You can byukd workflows that automatically trigger actions based on chat events, gather insights from customer interactions, and enhance your marketing strategies by connecting Social Intents to various other tools, like CRMs, email marketing services, and databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
social_intents: {
type: "app",
app: "social_intents",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.socialintents.com/v1/api/chats/`,
auth: {
username: `${this.social_intents.$auth.account_id}`,
password: `${this.social_intents.$auth.api_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.