Document Comparison Software
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
The Draftable API enables developers to convert documents and images into
highly-compressed, draft versions that can be easily shared and reviewed. This
can be useful for a number of different applications, such as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
draftable: {
type: "app",
app: "draftable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.draftable.com/v1/comparisons/[ACCOUNT_ID]/[IDENTIFIER]`,
headers: {
"Authorization": `Token ${this.draftable.$auth.token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})