Electronic Signature and Agreement Cloud (for developers)
Emit new event when an envelope status is set to sent or complete
Emit new event each time a Telegram Bot command is received.
Emit new event each time a channel post is created or updated.
Emit new event each time a Telegram message is created or updated.
Creates a signature request from a template See the docs here
Create an additional invite link for a chat, See the docs for more information
Edits photo or video messages. See the docs for more information
Edits text or game messages. See the docs for more information
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}`,
},
})
},
})
With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telegram_bot_api: {
type: "app",
app: "telegram_bot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
})
},
})