Best Zendesk Migration Service Providers in 2026 (Compared)
Compare the top Zendesk migration service providers in 2026. API limits, compliance, and how to choose the right partner for your data complexity.
Planning a migration?
Get a free 30-min call with our engineers. We'll review your setup and map out a custom migration plan — no obligation.
Schedule a free call- 1,500+ migrations completed
- Zero downtime guaranteed
- Transparent, fixed pricing
- Project success responsibility
- Post-migration support included
Best Zendesk Migration Service Providers in 2026 (Compared)
Your Zendesk migration will succeed or fail based on who runs it. The right provider handles API rate limits, preserves ticket timestamps, maps custom fields correctly, and delivers your data without downtime or notification spam. The wrong one leaves you with missing attachments, broken CSAT history, and a weekend of manual cleanup.
Self-serve tools work for small, standard moves. Once you have multi-brand routing, 100,000+ tickets, regulated data, or a zero-downtime requirement, you need a provider that can own extraction, mapping, import sequencing, validation, and cutover. Zendesk's own API docs show why: API budgets vary by plan, ticket imports cap at 100 per request, imported tickets do not carry native first reply or first resolution metrics, and triggers do not run on imported tickets.
This guide compares the Zendesk migration service providers available in 2026 — what each one does well, where each one falls short, and how to pick the right fit based on your migration complexity.
Disclosure: This guide is published by ClonePartner, a full-service Zendesk migration provider. ClonePartner is included in the comparison below. We have documented our own limitations alongside every other provider's. All API constraints, rate limits, and platform behaviors cited in this guide are sourced from Zendesk's public developer documentation and are independently verifiable.
Why Choosing the Right Zendesk Migration Partner Matters
Three things break during a bad Zendesk migration: data integrity, uptime, and compliance.
Data integrity fails when inline images get stripped, comment timestamps shift, or custom field values silently drop. Helpdesk data is highly relational — a single support ticket connects to a user profile, an organization, multiple tags, inline attachments, agent macros, and historical CSAT scores. If a migration provider only moves the flat text of a ticket, you lose the context that makes your data valuable. These problems compound after cutover because your reporting layer produces inaccurate metrics and agents lose context on open conversations.
Uptime fails when migration scripts consume the entire API rate limit during business hours, throttling live agent activity or triggering 429 errors across connected integrations. Support teams cannot pause operations for a week while data moves. A hard cutover requires freezing the legacy system, which leaves agents unable to respond to live customer issues. Advanced migration providers solve this by running continuous delta syncs — copying historical data in the background and running a final sync of only the newest tickets right before go-live.
Compliance fails when sensitive customer data passes through infrastructure that lacks SOC 2 Type II controls, when PHI moves without a signed BAA, or when EU personal data transits through non-GDPR-compliant processing environments. If you operate in healthcare, finance, or the European Union, your data migration is a compliance event. Handing API keys to an unvetted third-party tool exposes you to significant risk.
The provider you choose determines whether you absorb these risks or transfer them. A self-serve tool puts 100% of the risk on your team. A full-service migration partner absorbs that risk contractually through an SLA and statement of work.
For a deeper look at the broader landscape of tools and services, see Best Tools & Services for Help Desk Data Migration.
Zendesk API Limits and Migration Constraints
Every Zendesk migration, regardless of provider, runs into the same API constraints. Understanding them helps you evaluate whether a provider actually knows what they are doing or is wrapping a CSV import in a UI.
Account-wide rate limits by plan
Zendesk API rate limits range from 200 req/min on Team to 2,500 on Enterprise Plus. These are account-level limits, not per-agent limits. A 200-req/min Team plan limit covers your entire account — every integration, every webhook, and every agent action through the UI that triggers an API call shares the same bucket.
| Zendesk Suite Plan | Rate Limit (req/min) |
|---|---|
| Team | 200 |
| Growth | 400 |
| Professional | 400 |
| Enterprise | 700 |
| Enterprise Plus | 2,500 |
The High Volume API add-on increases a qualifying plan's limit to 2,500 requests per minute, but it does not add an additional 2,500 requests to the plan's existing limit. The add-on is available on the Zendesk Suite Growth plan and above, and you must have a minimum of 10 agent seats to purchase it.
Help Center API calls use the same rate limit values but do not count against the Support API bucket. (developer.zendesk.com)
Endpoint-specific limits that affect migrations
Incremental Exports are limited to 10 requests per minute, and the Update Ticket endpoint allows 30 updates per 10 minutes per user per ticket. The Incremental Export limit is the real bottleneck when extracting large ticket volumes from Zendesk as a source system. Zendesk also notes that incremental exports do not include the most recent minute of data, which matters for final delta sync planning. (developer.zendesk.com)
Ticket Import API behavior
The import endpoint is POST /api/v2/imports/tickets (or /api/v2/imports/tickets/create_many for batches up to 100 tickets). This is the only way to preserve historical timestamps during a migration into Zendesk.
POST /api/v2/imports/tickets/create_many.json
# max 100 ticket objects per requestIf a ticket with a status other than closed is imported, triggers won't run on the imported ticket. However, if the ticket is updated after import, triggers will resume. This is by design to prevent notification spam during migration. It also means any routing, tagging, or SLA assignment normally handled by triggers must be pre-calculated and included in the migration payload by your service provider.
Zendesk metrics and SLAs are not supported for imported tickets. Running metrics or SLAs on imported tickets will result in incomplete and inaccurate data. Zendesk recommends adding a tag to signify these tickets were imported into Zendesk Support and excluding them from any reports.
This means First Reply Time and Full Resolution Time will not calculate natively on migrated tickets. Any provider that promises otherwise is either unaware of this limitation or misrepresenting the API.
Background job limits
Some endpoints such as the Update Many Tickets endpoint queue background jobs to do the work. You can have up to 30 queued or running jobs at once. If you exceed the limit, you will receive a "TooManyJobs" error. A migration service needs to manage this job queue carefully to avoid stalling the entire import pipeline.
User record rate limits
Zendesk's API allows bulk creation of users at 100 per request, but single-user create or update actions have per-user rate limits. If a customer has submitted hundreds of tickets, updating their profile requires careful pacing. Large directory rebuilds still require batching discipline. (developer.zendesk.com)
Deep offset pagination
Zendesk documents that offset pagination past the first 10,000 records can return 400 Bad Request. Providers extracting large datasets should use cursor-based or incremental export patterns, not deep offset pagination. (developer.zendesk.com)
Sandbox environments for migration testing
Zendesk offers sandbox environments on Professional plans and above. A sandbox is a replica of your production Zendesk instance where you can run a test migration without affecting live data. Any serious migration plan should include at least one full sandbox import to validate field mapping, timestamp integrity, inline image rendering, and trigger behavior before production cutover. Zendesk Premium Sandboxes (available on Enterprise plans) allow you to copy your production configuration, making them the closest available approximation of a real migration. (support.zendesk.com)
Storage and billing impact of migrated data
Migrating large ticket volumes with attachments affects your Zendesk storage allocation. Zendesk Suite plans include storage that varies by plan tier (e.g., Enterprise includes more than Professional). Attachments count against this limit. A migration of 500K tickets averaging 3 attachments at 500KB each adds approximately 750GB. If this exceeds your plan's included storage, Zendesk charges for additional capacity. Verify your storage allocation and estimate the total attachment volume before committing to a migration plan.
API token retirement (new for 2026)
This catches teams off guard during migration planning. Zendesk is removing API tokens as an authentication method. Starting July 28, 2026, unused tokens will automatically deactivate. By April 30, 2027, all API tokens will stop working. You must migrate your integrations to OAuth before the final deadline. If your migration provider's scripts rely on API tokens, confirm they support OAuth before work begins.
For more on extracting data from Zendesk before a migration, see our guide on how to export tickets from Zendesk.
Top Zendesk Migration Service Providers (2026 Comparison)
The market breaks into four categories: Zendesk's own Professional Services, full-service engineering providers that write custom migration scripts, self-serve DIY tools where you configure and run the migration yourself, and consulting-led partners that combine advisory with execution.
Two names sometimes appear in Zendesk migration searches but do not belong on this shortlist. Trilio is a cloud-native data protection vendor for Kubernetes and OpenStack — it cannot extract tickets from Zendesk via API and map them into another platform. Canonical is the company behind Ubuntu, focused on infrastructure, server migration, and managed Kubernetes. Both are legitimate in their domains, but neither handles API-level ticket, user, and knowledge base transfer. If you are migrating Zendesk data, you need a provider that works at the application API layer, not the infrastructure layer.
A Zendesk Marketplace listing is useful, but it is not the same thing as being a Zendesk partner or receiving Zendesk support. Zendesk says third-party Marketplace apps are owned and supported by their authors, not by Zendesk. Treat partner badges, app listings, and security certifications as separate checks. (support.zendesk.com)
Here are the providers that actually do Zendesk data migrations.
Zendesk Professional Services (Platform Vendor)
What they do: Zendesk offers its own Professional Services team for customers migrating to Zendesk or consolidating Zendesk instances. Services include implementation, configuration, data migration assistance, and CX strategy consulting. Zendesk PS engagements are typically scoped through your Zendesk account executive.
Best for: Teams migrating to Zendesk who want the platform vendor directly involved, particularly when the migration is part of a larger Zendesk implementation or upgrade.
Key strengths:
- Direct access to Zendesk internal tooling, escalation paths, and engineering support that third parties cannot access
- Deep platform knowledge — they built the system
- Can coordinate with Zendesk product teams on edge cases or bugs encountered during migration
- Available as part of bundled implementation packages on Enterprise plans
Limitations:
- Not available for migrations away from Zendesk to competing platforms
- Typically higher cost than third-party providers, with engagements often starting at $10,000+ depending on scope
- Capacity constraints — Zendesk PS has finite bandwidth and may have multi-week lead times
- Less flexibility for highly custom data transformations compared to dedicated migration engineering firms
- Public documentation on migration-specific service details is limited; scope must be confirmed directly with your account team
ClonePartner (Full-Service Engineering)
What they do: ClonePartner is an engineer-led service where a dedicated engineer writes custom scripts for your exact data model and runs the migration for you. It is not a self-serve tool. It has a Zendesk Marketplace listing. (zendesk.com)
Best for: Complex migrations with 100K+ tickets, multi-brand Zendesk instances, custom apps, regulatory requirements (HIPAA, GDPR, SOC 2), and environments where zero downtime is non-negotiable.
Key strengths:
- Over 1,500 completed custom migrations and certifications including SOC 2 Type II, ISO 27001, GDPR, and HIPAA.
- Zero-downtime cutover using continuous delta syncs — agents work in the legacy system until the exact moment of switch
- Handles edge cases DIY tools skip: inline images, side conversations, nested custom field mappings, conditional field logic
- Manages the 30-concurrent-job limit and plan-specific rate limits to prevent API timeouts during high-volume transfers
- Risk transfer via SLA and statement of work — ClonePartner owns the migration outcome, not your team
Limitations:
- Higher cost than self-serve tools — typical engagements range from $3,000 to $25,000+ depending on volume, complexity, and compliance requirements. No public self-serve pricing calculator.
- Overkill for simple migrations under 5,000 tickets with standard fields
- As a smaller engineering firm, capacity for simultaneous large migrations may be limited — confirm lead times during scoping
- The "1,500+ completed migrations" figure is self-reported and not independently audited
For a direct head-to-head, see our detailed ClonePartner vs Help Desk Migration comparison.
Help Desk Migration by Relokia (Self-Serve DIY Tool)
What they do: Help Desk Migration by Relokia is an automated, self-serve platform where you configure field mapping and run the migration yourself. It is listed on the Zendesk apps marketplace as a partner app. (zendesk.com)
Best for: Standard migrations between supported platforms where the data model is straightforward, your team has bandwidth for configuration and validation, and compliance requirements are moderate.
Key strengths:
- Help Desk Migration helps companies of any size or industry import to Zendesk. Whether you're migrating between platforms or consolidating Zendesk accounts, their Zendesk migration tool imports support records with no coding needed.
- Can migrate tickets, contacts, users, companies, attachments, notes, tags, custom fields, side conversations, call recordings, and your entire knowledge base.
- Meets global security standards with HIPAA compliance, AWS infrastructure, SOC 2 Type II, SOC3, 2FA, RBAC, and encrypted data processing.
- Pricing depends on the number of records, making it predictable for standard migrations. Published pricing starts at approximately $39 for small migrations and scales with record count.
Limitations:
- Help Desk Migration's template mapper cannot handle transformation logic like combining fields, converting multi-select picklists, or preserving nested JSON structures.
- Delta migration is locked behind the most expensive "Signature" plan.
- Your team owns 100% of the migration risk. If something goes wrong, you troubleshoot it.
- Custom work requires separate scoping and adds cost beyond the quoted per-record price
Import2 (Automated Migration Software)
What they do: Import2 is a data migration service focused primarily on CRM systems. It enables users to transfer data from CSV files and connected apps into CRMs, help desks, and other business tools through a simple, mostly self-service process. It has a Zendesk Marketplace listing. (zendesk.com)
Best for: Small-to-mid-sized businesses moving a high volume of basic tickets.
Key strengths:
- Because all import tools are automated, price and turnaround time are fast. You can migrate years of data in just a few hours, and for as little as $199.
- Public SOC 2 Type II, GDPR, and CCPA materials on their trust center (trust.import2.com)
- Free sample migration of up to 100 records before you commit
- Minimal technical knowledge required to get started
Limitations:
- Custom field mapping and advanced objects are locked behind higher-tier plans (starting at $1,499).
- Public docs say side conversations and archived tickets are not supported (help.import2.com)
- Public documentation on knowledge base article support is inconsistent — the Marketplace page says articles transfer automatically, while the object support FAQ says articles are not supported for Zendesk migrations. Confirm scope in writing before committing. (zendesk.com)
- Limited support for complex Zendesk-specific objects like conditional custom fields and multi-brand configurations
Helpando (Consulting-Led Zendesk Partner)
What they do: Helpando was founded in 2013 by Fabian Dittrich. Fabian worked as part of the Zendesk Professional Services team. The experience gathered at Zendesk became the foundation for starting Helpando, becoming a Zendesk partner, and building a team that knows all the best practices relating to online customer service. Its public partner page shows Advanced Implementation Partner and Advanced Solution Partner badges. (zendesk.com)
Best for: Teams migrating to Zendesk who also need implementation consulting, Help Center design, custom app development, and ongoing Zendesk optimization as part of the same engagement.
Key strengths:
- Over 650 successful projects, and they are one of the first and oldest Zendesk partners with the unique advantage of having worked at Zendesk as employees.
- Provides support for Zendesk and Freshdesk data migrations, Help Center designs, app development, training, consulting, and building solutions based on Zendesk Sunshine.
- Deep Zendesk platform expertise that extends beyond migration into post-migration optimization
- Official Zendesk marketplace partner
Limitations:
- Primarily focused on migrations into Zendesk, not out of it
- Smaller team operating with freelancers and contractors, which can affect availability during peak periods
- Public compliance language is alignment-based rather than certification-heavy compared to larger providers (helpando.it)
- Consulting-heavy model means costs can be higher than pure tooling solutions
Other options worth evaluating
Independent Zendesk consultants on platforms like Upwork and Toptal can handle migrations at lower cost, particularly for mid-complexity moves. The tradeoff is that you assume full project management responsibility, compliance risk, and there is no SLA if the consultant disappears. Vet for specific Zendesk API migration experience, not just general Zendesk administration.
Provider comparison table
| Factor | Zendesk PS | ClonePartner | Help Desk Migration | Import2 | Helpando |
|---|---|---|---|---|---|
| Approach | Platform vendor services | Full-service engineering | Self-serve DIY tool | Automated self-serve | Consulting-led partner |
| Zendesk marketplace | N/A (vendor) | Yes | Yes | Yes | Yes |
| SOC 2 Type II | Yes (Zendesk) | Yes | Yes | Yes | Not published |
| HIPAA (BAA) | Yes | Yes | Yes (BAA available) | Not published | Not published |
| GDPR | Yes | Yes | Yes | Yes | EU hosting available |
| ISO 27001 | Yes (Zendesk) | Yes | Via AWS infrastructure | Not published | Alignment-based |
| Custom field logic | Custom scripting | Full custom scripting | Template mapper | Basic mapping | Custom scripting |
| Zero-downtime cutover | Available | Included | Signature plan only | Not offered | Available |
| Delta sync | Available | Included | Paid add-on | Available | Available |
| Migration FROM Zendesk | No | Yes | Yes | Yes | Limited |
| Indicative pricing | $10K+ (varies) | $3K–$25K+ | $39–$2,500+ (by record count) | $199–$1,499+ | Custom quote |
| Best volume range | Any | 10K to millions | Any volume | Under 50K | Under 500K |
| Risk ownership | Shared | Provider (SLA/SOW) | Customer | Customer | Shared |
Ask every vendor for a written object matrix before signing. Use the reference checklist below and confirm support for each item in writing. If the answer is vague, assume manual cleanup later.
Object compatibility reference checklist
Before signing with any provider, confirm written support for each of these objects:
| Object Category | Specific Items to Confirm |
|---|---|
| Tickets | Open, pending, on-hold, solved, closed, archived tickets |
| Ticket data | Comments (public + internal), inline images, attachments, tags, custom fields (text, dropdown, multi-select, checkbox, date, regex), conditional fields |
| Users & orgs | Agents, end users, organizations, user custom fields, org custom fields, org memberships |
| Conversations | Side conversations (email, Slack, child ticket), satisfaction ratings (CSAT) |
| Knowledge base | Articles, sections, categories, article attachments, article labels, content in multiple languages, user segment permissions |
| Brands | Multi-brand ticket routing, brand-specific Help Centers |
| Automations | Triggers, automations, macros, SLA policies, views, schedules (note: these typically require manual rebuild) |
| Apps & extensions | Custom app data, Sunshine custom objects, Sunshine relationships |
| Other | Call recordings, chat transcripts, community forum posts |
How to Choose Based on Migration Complexity
Not every migration needs the same level of service. Use the decision framework below to match your situation to the right provider type. Before making a decision, run through a comprehensive Zendesk Migration Checklist to audit your environment.
Decision flowchart
START
│
├─ Ticket count < 10K AND no custom fields AND no compliance requirements?
│ → Self-serve tool (Help Desk Migration or Import2): $200–$1,500
│
├─ Ticket count 10K–100K OR multi-brand OR complex custom fields?
│ ├─ Migrating TO Zendesk and need implementation help?
│ │ → Helpando or Zendesk PS
│ └─ Need field transformations or delta sync?
│ → Help Desk Migration Signature plan or full-service provider
│
├─ Ticket count > 100K OR HIPAA/SOC 2 required OR zero-downtime mandatory?
│ → Full-service engineering provider with SLA (ClonePartner, Zendesk PS)
│
└─ M&A consolidation (multiple Zendesk instances merging)?
→ Full-service engineering provider with multi-instance experience
Simple migrations (under 10K tickets, minimal custom fields)
Profile: Single brand, standard ticket fields, no regulatory constraints, team can tolerate a short freeze window.
Best fit: Help Desk Migration or Import2. At this scale, self-serve tooling works well. The data volume is small enough that API rate limits are not a concern, and the field mapping is straightforward enough to handle through a template UI. Budget $200 to $1,500 depending on record count and options.
Watch out for: Even at this scale, verify that inline images in ticket comments transfer correctly. This is the most common silent failure in automated tools. Run a sandbox test import and manually inspect at least 20 tickets with inline images before committing to a production migration.
Moderate migrations (10K to 100K tickets, multi-brand, automations)
Profile: Multiple brands, custom SLA policies, automations and triggers that need rebuilding, dropdown and multi-select custom fields, knowledge base with cross-linked articles.
Best fit: Help Desk Migration with their Premium or Signature plan, Helpando if you are migrating into Zendesk and want consulting bundled in, or a specialized engineering service if you have complex field transformation requirements. At this complexity level, you will likely need custom work beyond what a default template mapper supports.
Watch out for: Automations and triggers do not migrate through any tool — they must be rebuilt manually in the target system. Budget 10–40 hours for this depending on complexity. SLA policy recreation is also a manual process. If you plan to handle extraction internally, understand exactly how to export tickets from Zendesk before you begin.
Complex migrations (100K+ tickets, custom apps, regulatory requirements)
Profile: Large ticket volumes with attachments, custom Zendesk apps or Sunshine objects, multi-instance consolidation (M&A), HIPAA or SOC 2 compliance requirements, zero-downtime cutover mandatory.
Best fit: A full-service engineering provider with an SLA, or Zendesk Professional Services if migrating to Zendesk. At this scale, the API rate limits become a real engineering problem. A migration of 500K tickets with attachments on an Enterprise plan (700 req/min) requires careful orchestration of batch sizes, job queuing, attachment uploads, and delta syncs. Self-serve tools typically cannot manage the 30-concurrent-job limit at this volume without manual intervention.
For compliance-heavy migrations, you need a provider that holds their own SOC 2 Type II certification, can sign a BAA for HIPAA, and processes data under a GDPR-compliant DPA.
The tool license is rarely the expensive part. Rework, validation, missed edge cases, and downtime are. For the broader landscape of options, see our best tools and services for help desk data migration roundup. For a closer look at hidden expenses, read 7 Hidden Costs of Switching from Zendesk in 2026.
What Makes Complex Zendesk Migrations Fail
Based on patterns across large-scale migration projects, these are the failure modes that surface most often when teams attempt complex Zendesk migrations with inadequate tooling or planning.
Inline image loss. Zendesk stores inline images as references within comment HTML. If the migration tool does not download, re-upload, and re-link each image, the ticket comments display broken image placeholders. This is invisible during sample validation — which typically migrates 20 records — and only surfaces at scale. Mitigation: Run a sandbox test with at least 50 tickets known to contain inline images and visually inspect the results.
Timestamp drift. The Ticket Import API accepts UTC timestamps. If the source system exports in local time and the migration script does not normalize, every ticket's created_at and updated_at will be offset. On a 100K-ticket migration, this corrupts your entire reporting baseline. Mitigation: Validate that your provider normalizes all timestamps to UTC before import, and spot-check 10 tickets across different time zones post-migration.
Job queue saturation. Submitting batch imports too aggressively fills the 30-job queue, returning TooManyJobs errors. Recovery requires backing off, waiting for the queue to drain, and resubmitting. Poor implementations retry immediately, creating a cascade of failures. Mitigation: Your provider should implement exponential backoff with jitter and monitor the job queue depth before each submission.
Attachment upload bottleneck. Each attachment must be uploaded separately before being referenced in the ticket import payload. For tickets with 5 to 10 attachments each, the upload step alone can consume the majority of your API budget. At 200 req/min on a Team plan, a migration with 50K attachments can take days. Mitigation: Calculate your total attachment count and size before the migration. Consider upgrading to the High Volume API add-on for the migration period if on a Growth+ plan.
OAuth token expiration mid-migration. With Zendesk's new OAuth requirements, access tokens can expire during long-running imports. Zendesk is retiring Support API tokens in three phases between July 2026 and April 2027. Migration scripts must implement refresh token logic or the import will halt unexpectedly. Mitigation: Confirm your provider uses OAuth with automatic refresh token handling, not static API tokens.
No rollback plan. When a migration fails halfway — corrupted field mappings, duplicate tickets, or data that fails validation — you need a defined rollback procedure. Options include: (1) deleting all imported tickets by tag and re-running, (2) restoring from a pre-migration Zendesk sandbox snapshot, or (3) maintaining the legacy system in read-only mode until validation passes. Mitigation: Require your provider to document a rollback plan in the statement of work, including maximum rollback time and data preservation guarantees.
Next Steps for Your Zendesk Migration
Before you sign any vendor, get four things in writing: object coverage (use the checklist above), cutover method (hard cutover vs. delta sync), compliance documents (SOC 2 report, BAA, DPA as applicable), and QA plan (what gets validated, how many records, what constitutes pass/fail). Then run a sandbox migration against a representative dataset — not just a handful of clean tickets. That one step catches more bad assumptions than any sales call.
If your migration involves more than standard fields, more than one brand, any compliance requirement, or more than 50K tickets, a 30-minute scoping call with any qualified provider will save you weeks of troubleshooting. Bring your ticket count, a list of custom fields, your Zendesk plan tier, and your target platform.
Frequently Asked Questions
- What are the Zendesk API rate limits for data migration?
- Zendesk API rate limits range from 200 requests per minute on Suite Team to 2,500 on Enterprise Plus. These are account-level limits shared by all integrations and agents. The Ticket Import API's create_many endpoint accepts up to 100 tickets per batch, background job queues are capped at 30 concurrent jobs, and the Incremental Export endpoint for extracting data is limited to 10 requests per minute.
- Does the Zendesk Ticket Import API preserve SLA metrics?
- No. Zendesk metrics and SLAs are not supported for imported tickets. Running metrics or SLAs on imported tickets will produce incomplete and inaccurate data. Zendesk recommends tagging imported tickets and excluding them from reports. No migration tool or service can override this API-level limitation.
- Do Zendesk triggers fire on imported tickets?
- No. Triggers do not run on tickets imported via the Ticket Import API. This is by design to prevent mass notification spam to customers during migration. However, if an imported ticket is updated after import, triggers will resume running on that ticket. Plan your post-migration workflow accordingly.
- How long does a Zendesk migration take?
- Duration depends on ticket volume, attachment count, and your Zendesk plan's API rate limit. A 10K-ticket migration on an Enterprise plan (700 req/min) can complete in hours. A 500K-ticket migration with attachments on a Growth plan (400 req/min) can take multiple days. Engineer-led services like ClonePartner typically complete complex migrations in days, not weeks.
- Is a Zendesk Marketplace listing the same as being a Zendesk partner?
- No. Zendesk says Marketplace apps are owned and supported by their authors, not by Zendesk. Partner directory status and certification badges are separate things. Verify marketplace presence, partner status, and security certifications independently for any vendor you evaluate.

