Coassemble is the first online training platform for SaaS companies looking to deliver genuinely engaging training experiences to your employees.
Go to siteCoassemble is a user-friendly training and development platform that lets you create and deliver online courses. The Coassemble API enables the automation of various eLearning tasks, such as user management, course enrollment, and tracking course progress. By leveraging this API within Pipedream, you can streamline educational operations, synchronize educational data with other systems, and create dynamic learning experiences by triggering actions based on course activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
coassemble: {
type: "app",
app: "coassemble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.coassemble.$auth.domain}.coassemble.com/api/v1/members/${this.coassemble.$auth.user_id}`,
headers: {
"Authorization": `COASSEMBLE-V1-SHA256 UserId=${this.coassemble.$auth.user_id} UserToken=${this.coassemble.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
Automated User Onboarding Workflow: When a new employee is added to your HR system, use Pipedream to automatically create a user account in Coassemble and enroll them in relevant training courses.
Course Completion Certification: Set up a workflow that listens for a course completion event in Coassemble and then generates a personalized certificate using a document generation service like DocuSign or PDF.co.
Synchronize Course Data with a CRM: Keep your CRM, like Salesforce, updated by using Pipedream to monitor course progress and completion in Coassemble and then reflect these updates in the user's CRM record.
Use this endpoint to create new courses in your workspace. See the docs here
Create a user as a member of your campus or add an existing user to it. See the docs here
Coassemble uses API keys for authentication. When you connect your Coassemble account, Pipedream securely stores the keys so you can easily authenticate to Coassemble APIs in both code and no-code steps.
To retrieve your User ID and API Key,
Your domain is 1234
if your Coassemble workspace URL is https://1234.coassemble.com/