Execute major Canva Connect API integration migrations with strangler fig pattern.
Use when migrating to Canva from another design platform, re-platforming
existing integrations, or performing major architectural changes.
Trigger with phrases like "migrate to canva", "canva migration",
"switch to canva", "canva replatform", "replace design tool with canva".
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Execute major Canva Connect API integration migrations with strangler fig pattern.
Use when migrating to Canva from another design platform, re-platforming
existing integrations, or performing major architectural changes.
Trigger with phrases like "migrate to canva", "canva migration",
"switch to canva", "canva replatform", "replace design tool with canva".
Comprehensive guide for migrating to the Canva Connect API from another design platform or from direct image generation. Uses the strangler fig pattern for gradual, safe migration.
Migration Types
Type
Duration
Risk
Example
Fresh integration
Days
Low
New app adding Canva support
From image gen APIs
2-4 weeks
Medium
Replace Imgix/Cloudinary templates with Canva
From competitor
4-8 weeks
Medium
Replace Figma API / Adobe Express
Major re-architecture
Months
High
Rebuild design system on Canva
Pre-Migration Assessment
Asset Inventory
interfaceMigrationAssessment {
currentAssets: number; // Images, templates in old systemdesignTemplates: number; // Templates to recreate as Canva brand templatesapiCallsPerDay: number; // Current design API usageusersToMigrate: number; // Users who need Canva OAuthrequiredCanvaTier: 'free' | 'pro' | 'enterprise';
blockers: string[];
}
asyncfunctionassessMigration(): Promise<MigrationAssessment> {
return {
currentAssets: awaitcountCurrentAssets(),
: (),
: (),
: (),
: () ? : ,
: [
],
};
}
designTemplates
await
countTemplates
apiCallsPerDay
await
getAverageApiCalls
usersToMigrate
await
countActiveUsers
requiredCanvaTier
needsAutofill
'enterprise'
'free'
blockers
// Common blockers:
// - Need Enterprise for brand template autofill
// - Rate limits may be too low for current volume
// - No batch API — must process designs one at a time
Canva API Capability Mapping
// Map your current operations to Canva Connect API endpointsconst operationMapping = {
// Old system → Canva endpoint'createFromTemplate': 'POST /v1/autofills', // Requires Enterprise'generateImage': 'POST /v1/designs + POST /v1/exports',
'uploadAsset': 'POST /v1/asset-uploads',
'listDesigns': 'GET /v1/designs',
'exportAsPDF': 'POST /v1/exports (format: pdf)',
'exportAsPNG': 'POST /v1/exports (format: png)',
'organizeFolder': 'POST /v1/folders',
'addComment': 'POST /v1/designs/{id}/comment_threads',
};
# Immediate rollback — switch feature flag to 0%
curl -X PUT "https://flagservice.internal/api/flags/canva_migration_pct" \
-d '{"value": 0}'# Verify legacy system still works
curl -s "https://api.ourapp.com/health" | jq '.services.legacy_design'