with npm and HelpDocs?
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
Create a new article in your HelpDocs knowledge base. See the documentation
Create a new category in your HelpDocs knowledge base to organize articles. See the documentation
Delete an article from your HelpDocs knowledge base. See the documentation
Delete a category from your HelpDocs knowledge base. See the documentation
The chatbot source page feature allows you to generate a comprehensive list of all your Knowledge Base articles that can be fed directly to your chatbot. This makes it easy to leverage your existing documentation to power AI assistants and help your customers find answers quickly. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
helpdocs: {
type: "app",
app: "helpdocs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.helpdocs.io/v1/category`,
headers: {
Authorization: `Bearer ${this.helpdocs.$auth.api_key}`,
},
})
},
})