API Migration Guard Run free scan

Migration assurance

Settlement Report V2 migration: migration guide and scanner checklist

Settlement Report V2 migration explains what replaces GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE and GET_V2_SETTLEMENT_REPORT_DATA_XML, the removal date, the migration risks to validate, and how API Migration Guard detects the pattern.

TL;DR

Deprecated itemRemoval dateReplacementMigration riskScanner detection
GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE and GET_V2_SETTLEMENT_REPORT_DATA_XMLNovember 11, 2026GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE_V2Legacy parser and XML workflows must be rebuilt before the closest deadline.AMZ-SET-REPORT-001

Official status

Amazon documentation lists GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE and GET_V2_SETTLEMENT_REPORT_DATA_XML as in-scope for this migration. Use the official source before code freeze because deadlines and replacement details can change.

Production Settlement validation plan

Settlement migration is a finance parser rebuild. The production gate is not simply requesting the new report type; it is proving that amount rows, currencies, descriptions and totals reconcile under realistic sample files.

Validation areaProduction proof to collect
Report typeConfirm no code path still requests XML or the legacy flat-file report type.
Parser contractParse by header name and retain amount-type, amount-description, amount and currency together.
Locale handlingValidate decimal comma and decimal point samples with deterministic decimal arithmetic.
Accounting totalsReconcile principal, fees, refunds and transfers before replacing close workflows.

Settlement proof pack

Settlement Report V2 work belongs in the finance release gate. The proof pack should include the requested report type, raw TSV sample, normalized rows, reconciliation totals and an explicit note that XML has no replacement.

Removed resource and replacement

Old resourceReplacementDeadlineValidation outcome
GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE and GET_V2_SETTLEMENT_REPORT_DATA_XMLGET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE_V2November 11, 2026Legacy parser and XML workflows must be rebuilt before the closest deadline.

What breaks

AreaBreakage
Code patternLegacy settlement report type or parser path for GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE and GET_V2_SETTLEMENT_REPORT_DATA_XML.
Payload or schemaFlat File V2 is tab-delimited and collapses discrete fee/price columns into amount fields.
Permission or data accessFlat File V2 can require Finance and Accounting role access in Seller Central.
Pagination, status or field mappingHeader-name parsing, locale decimal commas and canonical totals replace positional parsing assumptions.

Before/after example

The example is intentionally small so the migration shape is visible in a code review.

Before:
const type = 'GET_V2_SETTLEMENT_REPORT_DATA_XML'; parseXml(settlement);

After:
const type = 'GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE_V2'; parseTsvByHeader(settlement);

Scanner detection

Rule IDSeverityEvidence patternFalse positive conditionValidation step
AMZ-SET-REPORT-001BLOCKER for XML or legacy report type evidence; HIGH for parser assumptionsGET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE and GET_V2_SETTLEMENT_REPORT_DATA_XMLDocumentation, comments, generated clients or test fixtures can require manual review.Request a Flat File V2 sample and verify it downloads for the marketplace.

Migration checklist

Common mistakes

Sample report preview

The public sample report shows the same evidence shape used by paid reports: rule ID, severity, file location, redacted evidence, migration mapping, validation step and quality gate.

FAQ

What replaces Settlement Report V2 migration?

GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE_V2

Is there an XML replacement?

No. XML settlement workflows must be rebuilt on Flat File V2.

What should finance teams validate?

Header mapping, currency grouping, amount normalization and totals reconciliation against accounting expectations.

Official sources

Internal migration links

Validate Settlement Report V2 migration in your source

Run a static scan, review the sample report shape, then unlock the detailed migration report when the evidence is useful.

Recommended next action