with Docusign Developer and Cloudflare?
Creates a signature request from a template See the documentation
Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass Cloudflare's accelerated cache and slow down your site. See the documentation
Choose the appropriate SSL setting for your zone. See the docs here
The DocuSign Developer API enables automation around electronic agreements, signatures, and approval processes. It's a powerful tool for streamlining document workflows, allowing you to create, send, and manage documents programmatically. With Pipedream, you can harness this capability to integrate DocuSign seamlessly with other services, triggering actions based on document status, automating follow-ups, syncing data with CRM systems, and more.
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}`, }, }) }, })
Harness the power of Cloudflare within Pipedream's scalable platform to automate and optimize your web operations. The Cloudflare API enables you to programmatically control countless aspects of your web presence, from security settings and firewall rules to traffic and DNS management. By integrating this with Pipedream, you can create custom workflows that react to specific triggers, manipulate Cloudflare configurations on-the-fly, and connect to countless other services for a seamless automation experience.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { cloudflare_api_key: { type: "app", app: "cloudflare_api_key", } }, async run({steps, $}) { return await axios($, { url: `https://api.cloudflare.com/client/v4/user`, headers: { "x-auth-key": `${this.cloudflare_api_key.$auth.api_key}`, "x-auth-email": `${this.cloudflare_api_key.$auth.email}`, }, }) }, })