Chatra is a live chat messenger app designed to infuse the most popular elements of mobile messengers into traditional live chat software.
Go to siteThe Chatra API enables the automation of customer support processes by allowing the programmatic sending of messages, retrieval of chat history, and management of ongoing conversations. With Pipedream's serverless platform, you can harness this API to integrate real-time chat capabilities with other applications, set up automated responses based on specific triggers, and analyze customer interactions to enhance support strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chatra: {
type: "app",
app: "chatra",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.chatra.io/api/messages/XGDsxHtLppJTJ3vZk`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Chatra.Simple ${this.chatra.$auth.public_key}:${this.chatra.$auth.secret_key}`,
},
})
},
})
Automated Customer Support Workflow: Trigger a Pipedream workflow when a new message arrives in Chatra, analyze the content using sentiment analysis (with an app like MonkeyLearn), and respond automatically with predefined responses or escalate to a human agent based on the sentiment score.
E-commerce Order Support: Integrate Chatra with Shopify using Pipedream. When a customer inquires about an order, automatically fetch order details from Shopify and provide real-time updates within the chat, enhancing customer experience and offloading work from support agents.
Support Ticket Integration: Connect Chatra to a ticketing system like Zendesk on Pipedream. Whenever a chat in Chatra is tagged with 'support', automatically create a support ticket in Zendesk with chat details, streamlining the issue resolution process.
chatra uses API keys for authentication. When you connect your chatra account, Pipedream securely stores the keys so you can easily authenticate to chatra APIs in both code and no-code steps.
You can find your Chatra Public and secret API keys, required to make API requests, under Settings > Preferences > apiKeys.