Skip to main content

apideck-migration

Facilitates migration from direct API integrations to Apideck's unified API, streamlining multiple integrations into one.

Install this skill

or
68/100

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

medium line 235

Template literal with variable interpolation in command context

SourceSKILL.md
235Authorization: `Bearer ${apiKey}`,
low line 232

Fetch to external URL

SourceSKILL.md
232const response = await fetch("https://unify.apideck.com/proxy", {
medium line 24

Webhook reference - potential data exfiltration

SourceSKILL.md
24- RECOMMEND a phased migration: start with read operations, then writes, then webhooks.
medium line 88

Webhook reference - potential data exfiltration

SourceSKILL.md
88### Phase 5: Webhook Migration
medium line 90

Webhook reference - potential data exfiltration

SourceSKILL.md
90Replace direct webhook handlers with Apideck's unified webhooks:
low line 93

Webhook reference - potential data exfiltration

SourceSKILL.md
93// BEFORE: Salesforce-specific webhook handler
low line 94

Webhook reference - potential data exfiltration

SourceSKILL.md
94app.post("/webhooks/salesforce", (req, res) => {
low line 101

Webhook reference - potential data exfiltration

SourceSKILL.md
101// AFTER: Apideck unified webhook handler
low line 102

Webhook reference - potential data exfiltration

SourceSKILL.md
102app.post("/webhooks/apideck", (req, res) => {
medium line 260

Webhook reference - potential data exfiltration

SourceSKILL.md
260- **Unified webhooks** — One handler for all connectors instead of N separate handlers
low line 232

External URL reference

SourceSKILL.md
232const response = await fetch("https://unify.apideck.com/proxy", {
low line 251

External URL reference

SourceSKILL.md
2514. **Test with the API Explorer** — Use the [Apideck API Explorer](https://developers.apideck.com/api-explorer) to verify endpoints interactively
Scanned on May 14, 2026
View Security Dashboard
Installation guide →