Docs/API Reference/Migrations

Check reservations before switching

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

Check reservations before switching

POST/v1/migrations/:workspaceId/cutover-check

Request

curl -X POST https://api.repull.dev/v1/migrations/1204/cutover-check \
  -H "Authorization: Bearer $REPULL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"reservations": [{"confirmationCode": "HMABC123", "checkIn": "2026-10-01", "checkOut": "2026-10-04"}]}'

Response

{ "data": { "matched": 210, "missing": [], "extra": [], "mismatched": [] } }

Body Parameters

reservations{ confirmationCode, checkIn, checkOut }[]Required

Every upcoming reservation the destination holds (dates YYYY-MM-DD). Read-only.

AI