with Slack and Palatine Speech?
Emit new events on new Slack interactivity events sourced from Block Kit interactive elements, Slash commands, or Shortcuts
Emit new event when a specific keyword is mentioned in a channel
Emit new event when a new message is posted to one or more channels
Emit new event when a new private channel is created. See the documentation
Downloads the transcription results in a specified file format (SRT, VTT, TXT, CSV, or XLSX). The task must be completed before downloading. See the documentation
Suspend the workflow until approved by a Slack message. See the documentation
Retrieves the status and results of a transcription task. Use this to poll for completion after starting a transcription job. See the documentation
The Pipedream app for Slack enables you to build event-driven workflows that interact with the Slack API. Once you authorize the app's access to your workspace, you can use Pipedream workflows to perform common Slack actions or write your own code against the Slack API.
The Pipedream app for Slack is not a typical app. You don't interact with it directly as a bot, and it doesn't add custom functionality to your workspace out of the box. It makes it easier to automate anything you'd typically use the Slack API for, using Pipedream workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
slack_v2: {
type: "app",
app: "slack_v2",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://slack.com/api/users.profile.get`,
headers: {
Authorization: `Bearer ${this.slack_v2.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform";
export default defineComponent({
props: {
palatine_speech: {
type: "app",
app: "palatine_speech",
}
},
async run({steps, $}) {
const data = "<your text to summarize here>";
return await axios($, {
method: "post",
url: `https://api.palatine.ru/api/v1/ai_service/summarize_text`,
headers: {
Authorization: `Bearer ${this.palatine_speech.$auth.api_key}`,
"content-type": `text/plain`,
},
params: {
task: `meeting_summary`,
},
data,
})
},
})