apideck-migration
Facilitates migration from direct API integrations to Apideck's unified API, streamlining multiple integrations into one.
Install this skill
Security score
The apideck-migration skill was audited on May 14, 2026 and we found 12 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 235 | Authorization: `Bearer ${apiKey}`, |
Fetch to external URL
| 232 | const response = await fetch("https://unify.apideck.com/proxy", { |
Webhook reference - potential data exfiltration
| 24 | - RECOMMEND a phased migration: start with read operations, then writes, then webhooks. |
Webhook reference - potential data exfiltration
| 88 | ### Phase 5: Webhook Migration |
Webhook reference - potential data exfiltration
| 90 | Replace direct webhook handlers with Apideck's unified webhooks: |
Webhook reference - potential data exfiltration
| 93 | // BEFORE: Salesforce-specific webhook handler |
Webhook reference - potential data exfiltration
| 94 | app.post("/webhooks/salesforce", (req, res) => { |
Webhook reference - potential data exfiltration
| 101 | // AFTER: Apideck unified webhook handler |
Webhook reference - potential data exfiltration
| 102 | app.post("/webhooks/apideck", (req, res) => { |
Webhook reference - potential data exfiltration
| 260 | - **Unified webhooks** — One handler for all connectors instead of N separate handlers |
External URL reference
| 232 | const response = await fetch("https://unify.apideck.com/proxy", { |
External URL reference
| 251 | 4. **Test with the API Explorer** — Use the [Apideck API Explorer](https://developers.apideck.com/api-explorer) to verify endpoints interactively |