Thred
  • Welcome
  • Getting Started
    • Overview
  • Basics
    • Create a Customer
    • Create a Connector
    • Migrate a Customer
    • Customize Branding
    • Connectors
Powered by GitBook
On this page
  1. Basics

Migrate a Customer

Once you have a Customer ID from the customer you're migrating, redirect them to your Hosted Migration Page

// Redirect to Thred Migration Page with Customer ID

function migrateCustomer(clientId: string, customerId: string) {
  const url = `https://migrate.thred.ai/${clientId}/?customer=${encodeURIComponent(customerId)}`;
  window.location.href = url;
}

If you set your Redirect URL in your dashboard, Thred will redirect to that URL after the migration completes.

PreviousCreate a ConnectorNextCustomize Branding

Last updated 29 days ago