with iSpring Learn and Autodesk?
Emit new event when a new version of a file is created in Autodesk. See the documentation
Emit new event when courses or materials in a course are completed successfully.
Emit new event when a folder is added to a specified folder in Autodesk. See the documentation
Emit new event when learners are enrolled in courses.
Emit new event when a new project is created in Autodesk. See the documentation
Enrolls users to the specified courses on iSpring Learn.
Creates a new folder in a project in Autodesk. See the documentation
Fetches the list of user enrollments on iSpring Learn. See the documentation
Uploads a new file to a specified folder in Autodesk. See the documentation
Allows to modify the properties of a specific user on iSpring Learn.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ispring_learn: {
type: "app",
app: "ispring_learn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-learn.ispringlearn.com/content`,
headers: {
Authorization: `Bearer ${this.ispring_learn.$auth.oauth_access_token}`,
"X-Target-Locale": `en-US`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
autodesk: {
type: "app",
app: "autodesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.userprofile.autodesk.com/userinfo`,
headers: {
Authorization: `Bearer ${this.autodesk.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})