Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Compares two texts answering if they are equal or not. See the documentation
The Encodian API provides robust document management and manipulation capabilities, enabling users to convert, merge, split, OCR, and watermark documents. This API integrates smoothly with Pipedream, allowing for the automation of document processing tasks within various workflows. By leveraging Encodian with Pipedream, users can create efficient automations that handle large volumes of documents, reducing manual effort and improving productivity in document-centric processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
encodian: {
type: "app",
app: "encodian",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apps-encodian.com/api/v1/Mgmt/GetSubscriptionStatus`,
headers: {
"X-ApiKey": `${this.encodian.$auth.encodian_flowr_api_key}`,
},
})
},
})