Simple E-Signature software for small businesses.
Emit new event when a new message is posted to one or more channels
Triggers when a document is sent. See the documentation
Triggers when a new signature request has been sent. See the documentation
Emit new event when a message was posted in a direct message channel
Creates a new signature request. See the documentation
Send a message to a public or private channel. See the documentation
Configure custom blocks and send to a channel, group, or user. See the documentation.
Send a message as a threaded reply. See postMessage or scheduleMessage docs here
Send a message to a user or group. See the documentation
Signaturely API lets you automate document signing processes within your apps. You can harness this functionality on Pipedream to create, send, and manage legally-binding signatures on documents without manual intervention. Whether you're sending contracts, onboarding new employees, or needing signatures from clients, integrating Signaturely with Pipedream can streamline your workflow, save time, and reduce errors.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signaturely: {
type: "app",
app: "signaturely",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signaturely.com/api/v1/user/by-api`,
headers: {
"Authorization": `Api-Key ${this.signaturely.$auth.api_key}`,
},
})
},
})
The Pipedream Slack app enables you to build event-driven workflows that interact with the Slack API. Once you authorize the Pipedream 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 Slack app 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: {
type: "app",
app: "slack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://slack.com/api/users.profile.get`,
headers: {
Authorization: `Bearer ${this.slack.$auth.oauth_access_token}`,
},
})
},
})