For the complete documentation index, see llms.txt. This page is also available as Markdown.

Migration

Migration Service handles one-off connector and template migrations.

Trigger template connector migration

post

Triggers an async one-off update that adds provider_connectors to template YAMLs for templates in use.

Body
dry_runbooleanRequired

If true, simulate the migration without updating templates.

Example: false
Responses
202

Accepted response.

application/json
messagestringRequired

Confirmation message

Example: Migration job started successfully
post/api/migrate/template-connectors
POST /api/migrate/template-connectors HTTP/1.1
Host: localhost:80
Content-Type: application/json
Accept: */*
Content-Length: 17

{
  "dry_run": false
}
{
  "message": "Migration job started successfully"
}

Trigger workspace connector migration

post

Triggers an async one-off migration that moves connector data from workspaces into the provider_connectors table.

Body
dry_runbooleanRequired

If true, simulate the migration without modifying data.

Example: false
Responses
202

Accepted response.

application/json
messagestringRequired

Confirmation message

Example: Migration job started successfully
post/api/migrate/workspace-connectors
POST /api/migrate/workspace-connectors HTTP/1.1
Host: localhost:80
Content-Type: application/json
Accept: */*
Content-Length: 17

{
  "dry_run": false
}
{
  "message": "Migration job started successfully"
}

Last updated

Was this helpful?