mindtickle-webhooks-events

Featured

Webhooks Events for MindTickle. Trigger: "mindtickle webhooks events".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# MindTickle Webhooks & Events ## Overview MindTickle emits webhook events as sales reps progress through enablement programs, complete courses, submit quizzes, and are provisioned or deprovisioned from the platform. These events enable integrations such as pushing completion certificates to an LMS, syncing learner progress to Salesforce rep profiles, triggering manager alerts when quiz scores fall below threshold, and automating user lifecycle management with your IdP. All payloads are HMAC-signed JSON scoped to your company, delivered over HTTPS. ## Prerequisites - MindTickle admin access with API & Webhooks permissions enabled - Webhook endpoint URL accessible over HTTPS (TLS 1.2+) - Company-scoped signing secret from MindTickle Admin > Integrations (`MINDTICKLE_WEBHOOK_SECRET`) - Express.js with raw body parsing for HMAC verification ## Webhook Registration ```typescript import axios from "axios"; const res = await axios.post( "https://api.mindtickle.com/v2/webhooks", { url: "https://your-app.com/webhooks/mindtickle", events: ["course.completed", "quiz.submitted", "user.provisioned", "user.deprovisioned", "module.progress"], companyId: process.env.MINDTICKLE_COMPANY_ID, }, { headers: { Authorization: `Bearer ${process.env.MINDTICKLE_API_TOKEN}`, "Content-Type": "application/json" } } ); console.log("Webhook ID:", res.data.webhookId); ``` ## Signature Verification ```typescript import crypto from "crypto"; import { R...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category