Docs/API Reference/Migrations

Cut over

Migrations · POST /v1/migrations/:workspaceId/cutover

Cut over

POST/v1/migrations/:workspaceId/cutover

Note

Disconnects the source so it stops syncing. The imported data stays readable. Idempotent.

Request

curl -X POST https://api.repull.dev/v1/migrations/1204/cutover \
  -H "Authorization: Bearer $REPULL_API_KEY"

Response

{ "data": { "workspaceId": "1204", "state": "cut_over", "cutoverAt": "2026-10-01T09:00:00Z", "disconnectedConnections": 1 } }
AI