Leanest, Fastest, and Most Reliable Localization Platform
Analyzes an input call, extracting structured data and providing insights. See the documentation
Terminates a currently ongoing call using Bland AI. See the documentation
Retrieves the transcript of a specified call post-completion. See the documentation
The Phrase API provides a suite of tools for CRM (Customer Relationship Management) to manage and nurture customer interactions and data throughout the customer lifecycle. Using Pipedream, developers can create automated workflows that tap into the power of the Phrase API to streamline communication, manage leads, and enhance customer relationships. With Pipedream's no-code platform, these workflows can trigger on events, process data, and connect to hundreds of other services for a wide array of use cases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
phrase: {
type: "app",
app: "phrase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.phrase.com/v2/projects`,
headers: {
"Authorization": `token ${this.phrase.$auth.access_token}`,
},
})
},
})
The Bland AI API offers a suite of artificial intelligence services, which, when integrated with Pipedream, can automate tasks, analyze data, and enhance applications with machine learning capabilities. Through Pipedream's serverless platform, you can connect Bland AI with various apps to create custom workflows, process data, and respond to events in real time without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bland_ai: {
type: "app",
app: "bland_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bland.ai/v1/calls`,
headers: {
"Authorization": `${this.bland_ai.$auth.api_key}`,
},
})
},
})