Electronic Signature and Agreement Cloud (for developers)
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when an envelope status is set to sent or complete
Emit new event for each command posted to one or more channels in a Discord server
Creates a signature request from a template See the documentation
Send a simple or structured message (using embeds) to a Discord channel
With the Docusign Developer API, you can build applications that allow users to
electronically sign documents, track the status of documents, and manage
document workflows. Here are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docusign_developer: {
type: "app",
app: "docusign_developer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://account-d.docusign.com/oauth/userinfo`,
headers: {
Authorization: `Bearer ${this.docusign_developer.$auth.oauth_access_token}`,
},
})
},
})
The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})