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
Creates a new prospect inside Teach 'n Go. See the documentation
Registers a new student in Teach 'n Go. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
teach_n_go: {
type: "app",
app: "teach_n_go",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.teachngo.com/globalApis/student_list`,
headers: {
"X-API-KEY": `${this.teach_n_go.$auth.api_key}`,
},
})
},
})