with CallMiner and Textgain?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
callminer: {
type: "app",
app: "callminer",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.callminer.$auth.ingestion_api_url}/api/info/callmetadataconfig`,
headers: {
Authorization: `Bearer ${this.callminer.$auth.oauth_access_token}`,
},
})
},
})
The Textgain API allows you to tap into advanced text analytics via Pipedream. It's designed to provide insights into text for various applications like sentiment analysis, language detection, and concept extraction. By integrating with Pipedream, you can automate the extraction of valuable data from text and connect it with countless other services for enhanced workflows, data processing, and decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
textgain: {
type: "app",
app: "textgain",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.textgain.com/diagnostics`,
params: {
key: `${this.textgain.$auth.api_key}`,
},
})
},
})