with Chattermill and Edusign?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chattermill: {
type: "app",
app: "chattermill",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.chattermill.com/v1/projects`,
headers: {
Authorization: `Bearer ${this.chattermill.$auth.api_key}`,
},
})
},
})
The Edusign API provides a suite of tools for managing electronic signatures and documents. Within Pipedream, you can use this API to automate workflows related to document preparation, signing processes, and post-signature tasks. By connecting to other apps available on Pipedream, such as CRMs, cloud storage, or communication tools, you can create seamless integrations for handling documents across various stages of your business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
edusign: {
type: "app",
app: "edusign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ext.edusign.fr/v1/users`,
headers: {
Authorization: `Bearer ${this.edusign.$auth.api_key}`,
},
})
},
})