with pdfFiller and Slack?
Emit new event when a new document is uploaded or created.
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
Transforms a document into a fillable form and generates a shareable link for the form. See the documentation
Enables searching capabilities for documents by name. See the documentation
Suspend the workflow until approved by a Slack message. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pdffiller: {
type: "app",
app: "pdffiller",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pdffiller.com/v2/users/me`,
headers: {
Authorization: `Bearer ${this.pdffiller.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})