with signNow and Sapling.ai ?
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event when a document has been updated. See the documentation
Have Sapling adapt its system over time. Each suggested completion has a completion UUID. You can pass this information back to Sapling to indicate the completion suggestion was helpful. See the documentation here
Creates a new document copy out of a template. See the documentation
Have Sapling adapt its system over time. Each suggested edit has an edit UUID. You can pass this information back to Sapling to indicate the edit suggestion was helpful. See the documentation here
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
Have Sapling not recommend the same edit anymore. Each suggested edit has an edit UUID. You can pass this information back to Sapling to indicate the edit suggestion was not helpful. See the documentation here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})
Sapling.ai offers an AI-driven writing assistant that can help you write better and faster by providing grammar and style suggestions. With its API, you can automate text analysis and correction processes within Pipedream workflows. By integrating Sapling.ai's API in Pipedream, you can create powerful automations that enhance writing quality across various applications, from customer support messages to content creation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sapling_ai: {
type: "app",
app: "sapling_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sapling.ai/api/v1/team`,
params: {
key: `${this.sapling_ai.$auth.api_key}`,
},
})
},
})