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
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
import crypto from "crypto";
import { Request, Response, NextFunction } from "express";
function verifyMindTickleSignature(req: Request, res: Response, next: NextFunction) {
const signature = req.headers["x-mt-webhook-signature"] as string;
const timestamp = req.headers["x-mt-webhook-timestamp"] as string;
if (!signature || !timestamp) return res.status(401).send("Missing signature");
const signedPayload = `${timestamp}:${(req as any).rawBody}`;
const expected = crypto
.createHmac("sha256", process.env.MINDTICKLE_WEBHOOK_SECRET!)
.update(signedPayload)
.digest("hex");
if (!crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(expected))) {
return res.status(403).send("Invalid signature");
}
next();
}
Event Handler
app.post("/webhooks/mindtickle", verifyMindTickleSignature, (req, res) => {
const { event, data, companyId } = req.body;
switch (event) {
case "course.completed":
console.log(`${data.userId} completed "${data.courseName}" — score: ${data.score}%`);
break;
case "quiz.submitted":
console.log(`Quiz "${data.quizName}" by ${data.userId}: ${data.score}/${data.maxScore}`);
break;
case "user.provisioned":
console.log(`User provisioned: ${data.email}, role: ${data.role}, team: ${data.teamId}`);
break;
case "user.deprovisioned":
console.log(`User removed: ${data.userId}, reason: ${data.reason}`);
break;
case "module.progress":
console.log(`${data.userId} at ${data.progressPct}% in module "${data.moduleName}"`);
break;
default:
console.warn(`Unhandled event: ${event}`);
}
res.status(200).json({ received: true });
});
Event Types
| Event |
Payload Fields |
Use Case |
course.completed |
userId, courseName, courseId, score, completedAt |
Push certificates to LMS or update Salesforce training status |
quiz.submitted |
userId, quizName, quizId, score, maxScore, passed |
Flag low-scoring reps for coaching follow-up |
user.provisioned |
userId, email, role, teamId, provisionedBy |
Sync new hires to enablement programs automatically |
user.deprovisioned |
userId, email, reason, deprovisionedAt |
Revoke access in downstream systems and archive data |
module.progress |
userId, moduleName, moduleId, progressPct, timeSpentSec |
Build real-time leaderboards and progress dashboards |
certification.expired |
userId, certName, expiredAt, renewalDeadline |
Trigger re-certification workflow in IdP |
Retry & Idempotency
const processed = new Set<string>();
function ensureIdempotent(req: Request, res: Response, next: NextFunction) {
const eventId = req.headers["x-mt-event-id"] as string;
if (processed.has(eventId)) {
return res.status(200).json({ duplicate: true });
}
processed.add(eventId);
next();
}
// MindTickle retries up to 4 times with linear backoff (5 min, 15 min, 60 min, 6 hours).
// After 24 hours of failures, the webhook is suspended and an admin email is sent.
Error Handling
| Issue |
Cause |
Fix |
| 401 on all deliveries |
Company-scoped secret rotated by admin |
Re-copy secret from Admin > Integrations and redeploy |
user.provisioned not firing |
Webhook not subscribed to SCIM events |
Add user.provisioned to the events array in subscription |
Duplicate course.completed |
Learner retook course, triggered redelivery |
Deduplicate on x-mt-event-id header |
Payload missing score field |
Quiz configured as ungraded practice |
Check data.quizType — practice quizzes omit scoring fields |
| Webhook suspended |
Endpoint down for 24+ hours |
Fix endpoint, then re-activate via PATCH /v2/webhooks/{id} |
Resources
Next Steps
See mindtickle-security-basics.
Source: jeremylongshore/claude-code-plugins-plus-skills → plugins/saas-packs/mindtickle-pack/skills/mindtickle-webhooks-events/SKILL.md
1---2name: mindtickle-webhooks-events3description: 'Webhooks Events for MindTickle. Trigger: "mindtickle webhooks events". '4---56# MindTickle Webhooks & Events78## Overview910MindTickle 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.1112## Prerequisites1314- MindTickle admin access with API & Webhooks permissions enabled15- Webhook endpoint URL accessible over HTTPS (TLS 1.2+)16- Company-scoped signing secret from MindTickle Admin > Integrations (`MINDTICKLE_WEBHOOK_SECRET`)17- Express.js with raw body parsing for HMAC verification1819## Webhook Registration2021```typescript22import axios from "axios";2324const res = await axios.post(25 "https://api.mindtickle.com/v2/webhooks",26 {27 url: "https://your-app.com/webhooks/mindtickle",28 events: ["course.completed", "quiz.submitted", "user.provisioned",29 "user.deprovisioned", "module.progress"],30 companyId: process.env.MINDTICKLE_COMPANY_ID,31 },32 { headers: { Authorization: `Bearer ${process.env.MINDTICKLE_API_TOKEN}`,33 "Content-Type": "application/json" } }34);35console.log("Webhook ID:", res.data.webhookId);36```3738## Signature Verification3940```typescript41import crypto from "crypto";42import { Request, Response, NextFunction } from "express";4344function verifyMindTickleSignature(req: Request, res: Response, next: NextFunction) {45 const signature = req.headers["x-mt-webhook-signature"] as string;46 const timestamp = req.headers["x-mt-webhook-timestamp"] as string;47 if (!signature || !timestamp) return res.status(401).send("Missing signature");4849 const signedPayload = `${timestamp}:${(req as any).rawBody}`;50 const expected = crypto51 .createHmac("sha256", process.env.MINDTICKLE_WEBHOOK_SECRET!)52 .update(signedPayload)53 .digest("hex");5455 if (!crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(expected))) {56 return res.status(403).send("Invalid signature");57 }58 next();59}60```6162## Event Handler6364```typescript65app.post("/webhooks/mindtickle", verifyMindTickleSignature, (req, res) => {66 const { event, data, companyId } = req.body;6768 switch (event) {69 case "course.completed":70 console.log(`${data.userId} completed "${data.courseName}" — score: ${data.score}%`);71 break;72 case "quiz.submitted":73 console.log(`Quiz "${data.quizName}" by ${data.userId}: ${data.score}/${data.maxScore}`);74 break;75 case "user.provisioned":76 console.log(`User provisioned: ${data.email}, role: ${data.role}, team: ${data.teamId}`);77 break;78 case "user.deprovisioned":79 console.log(`User removed: ${data.userId}, reason: ${data.reason}`);80 break;81 case "module.progress":82 console.log(`${data.userId} at ${data.progressPct}% in module "${data.moduleName}"`);83 break;84 default:85 console.warn(`Unhandled event: ${event}`);86 }87 res.status(200).json({ received: true });88});89```9091## Event Types9293| Event | Payload Fields | Use Case |94|---|---|---|95| `course.completed` | `userId`, `courseName`, `courseId`, `score`, `completedAt` | Push certificates to LMS or update Salesforce training status |96| `quiz.submitted` | `userId`, `quizName`, `quizId`, `score`, `maxScore`, `passed` | Flag low-scoring reps for coaching follow-up |97| `user.provisioned` | `userId`, `email`, `role`, `teamId`, `provisionedBy` | Sync new hires to enablement programs automatically |98| `user.deprovisioned` | `userId`, `email`, `reason`, `deprovisionedAt` | Revoke access in downstream systems and archive data |99| `module.progress` | `userId`, `moduleName`, `moduleId`, `progressPct`, `timeSpentSec` | Build real-time leaderboards and progress dashboards |100| `certification.expired` | `userId`, `certName`, `expiredAt`, `renewalDeadline` | Trigger re-certification workflow in IdP |101102## Retry & Idempotency103104```typescript105const processed = new Set<string>();106107function ensureIdempotent(req: Request, res: Response, next: NextFunction) {108 const eventId = req.headers["x-mt-event-id"] as string;109 if (processed.has(eventId)) {110 return res.status(200).json({ duplicate: true });111 }112 processed.add(eventId);113 next();114}115// MindTickle retries up to 4 times with linear backoff (5 min, 15 min, 60 min, 6 hours).116// After 24 hours of failures, the webhook is suspended and an admin email is sent.117```118119## Error Handling120121| Issue | Cause | Fix |122|---|---|---|123| 401 on all deliveries | Company-scoped secret rotated by admin | Re-copy secret from Admin > Integrations and redeploy |124| `user.provisioned` not firing | Webhook not subscribed to SCIM events | Add `user.provisioned` to the events array in subscription |125| Duplicate `course.completed` | Learner retook course, triggered redelivery | Deduplicate on `x-mt-event-id` header |126| Payload missing `score` field | Quiz configured as ungraded practice | Check `data.quizType` — practice quizzes omit scoring fields |127| Webhook suspended | Endpoint down for 24+ hours | Fix endpoint, then re-activate via `PATCH /v2/webhooks/{id}` |128129## Resources130131- [MindTickle Integrations Platform](https://www.mindtickle.com/platform/integrations/)132133## Next Steps134135See `mindtickle-security-basics`.136137---138139**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `plugins/saas-packs/mindtickle-pack/skills/mindtickle-webhooks-events/SKILL.md`