mindtickle-webhooks-events
Webhooks Events for MindTickle. Trigger: "mindtickle webhooks events".
What this skill does
# 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 { 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
```typescript
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
```typescript
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
- [MindTickle Integrations Platform](https://www.mindtickle.com/platform/integrations/)
## Next Steps
See `mindtickle-security-basics`.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.