API Migration Guard Run free scan

Migration assurance

Orders API v2026 includedData uppercase

Orders API v2026 includedData uppercase is a real Amazon SP-API troubleshooting query. This page explains the likely cause, how to check code evidence, how to validate the fix, and where API Migration Guard can catch the pattern.

TL;DR

Deprecated itemRemoval dateReplacementMigration riskScanner detection
includedData enum serializationMarch 27, 2027send exact uppercase includedData values such as BUYER, RECIPIENT, PROCEEDS and PACKAGESLowercase includedData values can cause missing buyer, recipient, proceeds or package data while the migration appears code-complete.AMZ-ORD-INCLUDED-DATA-001

Official status

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

Production Orders validation plan

Orders migrations need same-order parity checks because the v2026 model consolidates data that v0 teams often fetched through separate buyer, address and item calls. Treat each finding as a prompt to validate a captured order before code freeze.

Validation areaProduction proof to collect
includedDataRecord which paths require BUYER, RECIPIENT and ITEMS and confirm role approval for each marketplace.
Payload parityCompare one shipped, one unshipped and one cancelled order against the legacy consumer contract.
PaginationExercise paginationToken with the original search filters and confirm retry behavior for expired tokens.
Downstream jobsRe-run tax, fulfillment, notification and support workflows that consume order fields.

Quick answer

Orders API v2026 includedData uppercase usually means includedData is treated as a free-form string and the integration sends lowercase or legacy aliases. The fastest check is: Log the final URL/query/body sent to Amazon and inspect includedData casing.

SymptomFast checkLikely owner
includedData is treated as a free-form string and the integration sends lowercase or legacy aliases.Log the final URL/query/body sent to Amazon and inspect includedData casing.API/platform owner plus finance, orders or support reviewer as applicable.

Why this happens

This troubleshooting page is tied to includedData enum serialization, not a generic SP-API failure.

CauseWhat to verify
Cause 1The code accepts buyerInfo, recipientAddress or mixed-case enum values.
Cause 2Generated clients or validation schemas do not constrain includedData values.
Cause 3Search and getOrder requests use different casing rules.
Cause 4The app reports missing data as redaction without inspecting the request.

How to detect it in your code

Search the source, scheduled jobs, generated clients, report configuration and sample fixtures before assuming the issue is only live data.

const includedData = ['BUYER', 'RECIPIENT', 'PROCEEDS', 'PACKAGES'];
assert(includedData.every(v => v === v.toUpperCase()));

Fix checklist

Migration risk

Lowercase includedData values can cause missing buyer, recipient, proceeds or package data while the migration appears code-complete.

Production surfaceRisk if ignored
Accounting/order/support workflowLowercase includedData values can cause missing buyer, recipient, proceeds or package data while the migration appears code-complete.
Release gateThe migration can look complete while the runtime job still fails or silently loses data.
Audit evidenceWithout a preserved sample, reviewers cannot distinguish an accepted limitation from a migration bug.

How API Migration Guard checks it

API Migration Guard scans for exact operation names, report type constants, endpoint strings, query parameters, parser assumptions and token/window loops. Paid reports add file-level findings, remediation notes, sample validation steps, CSV/JSON/SARIF exports and an evidence package.

RuleEvidenceValidation
AMZ-ORD-INCLUDED-DATA-001includedData enum serializationRe-scan source for lowercase includedData strings.

Removed resource and replacement

Old resourceReplacementDeadlineValidation outcome
includedData enum serializationsend exact uppercase includedData values such as BUYER, RECIPIENT, PROCEEDS and PACKAGESMarch 27, 2027Lowercase includedData values can cause missing buyer, recipient, proceeds or package data while the migration appears code-complete.

What breaks

AreaBreakage
Code patternRuntime or source evidence points at includedData enum serialization.
Payload or schemaincludedData is treated as a free-form string and the integration sends lowercase or legacy aliases.
Permission or data accessThe code accepts buyerInfo, recipientAddress or mixed-case enum values.
Pagination, status or field mappingThe app reports missing data as redaction without inspecting the request.

Before/after example

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

Before:
const includedData = ['BUYER', 'RECIPIENT', 'PROCEEDS', 'PACKAGES'];
assert(includedData.every(v => v === v.toUpperCase()));

After:
// Fix path: send exact uppercase includedData values such as BUYER, RECIPIENT, PROCEEDS and PACKAGES
// Validate with API Migration Guard, sample evidence and a re-scan.

Scanner detection

Rule IDSeverityEvidence patternFalse positive conditionValidation step
AMZ-ORD-INCLUDED-DATA-001HIGH for runtime error evidence; BLOCKER when tied to removed resourcesincludedData enum serializationDocumentation, comments, generated clients or test fixtures can require manual review.Centralize includedData values in an enum or constant list.

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

How do I fix Orders API v2026 includedData uppercase?

Confirm the request evidence, apply the send exact uppercase includedData values such as BUYER, RECIPIENT, PROCEEDS and PACKAGES path, validate the sample and re-scan.

Can API Migration Guard detect Orders API v2026 includedData uppercase?

It detects source patterns related to AMZ-ORD-INCLUDED-DATA-001 and shows evidence, remediation notes and validation steps.

Does the free scan call Amazon?

No. It scans uploaded or pasted source statically and can validate pasted samples without Amazon credentials.

When should this become a paid report?

When the free scan finds matching production evidence and the team needs file-level findings, SARIF, CSV or handoff artifacts.

Official sources

Internal migration links

Validate Orders API v2026 includedData uppercase 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