with OpenAI Passthrough and Docusign?
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See the documentation
Create and send an envelope, or create a draft envelope. See the documentation here
Summarizes text using the OpenAI API. See the documentation
Creates a signature request from a template See the docs here
Download the documents of an envelope to the /tmp directory. See the documentation here
export default defineComponent({
props: {
openai_passthrough: {
type: "app",
app: "openai_passthrough",
}
},
async run({steps, $}) {
},
})
The DocuSign API enables you to integrate electronic signature workflows into your applications, automate the process of sending and receiving documents for signatures, and securely manage related data. Leveraging Pipedream's platform, you can build powerful automations that streamline how contracts and agreements are handled, enhance compliance, and improve overall efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docusign: {
type: "app",
app: "docusign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://account.docusign.com/oauth/userinfo`,
headers: {
Authorization: `Bearer ${this.docusign.$auth.oauth_access_token}`,
},
})
},
})