with Leverly and Microsoft Azure AI Translator?
Identifies the positioning of sentence boundaries in a piece of text. See the documentation
Identifies the language of a piece of text. See the documentation
Translate text into the specified language. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leverly: {
type: "app",
app: "leverly",
}
},
async run({steps, $}) {
const data = {
"firstName": `Sergio`,
"Phone1": `+123456789`,
}
return await axios($, {
method: "post",
url: `https://app.leverly.com/main/ingestor/process`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
params: {
AccountID: `${this.leverly.$auth.account_id}`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_azure_ai_translator: {
type: "app",
app: "microsoft_azure_ai_translator",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.microsoft_azure_ai_translator.$auth.endpoint}/languages`,
headers: {
"Ocp-Apim-Subscription-Key": `${this.microsoft_azure_ai_translator.$auth.api_key}`,
"Ocp-Apim-Subscription-Region": `${this.microsoft_azure_ai_translator.$auth.location}`,
"Content-Type": `application/json`,
},
params: {
"api-version": `3.0`
},
})
},
})