Docs/API Reference/Migrations

Get the migration report

Migrations · GET /v1/migrations/:workspaceId/report

Get the migration report

GET/v1/migrations/:workspaceId/report

Request

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

Response

{
  "data": {
    "workspaceId": "1204",
    "issues": [ { "severity": "warning", "entity": "reservations", "code": "reservation_missing_guest_contact",
      "message": "Upcoming reservations with neither a guest email nor a phone number.", "count": 3, "sampleIds": [215906, 215911, 215940] } ],
    "capabilities": { "guesty": { "read": { "listings": { "level": "full" } } } }
  }
}
AI