Export AWD Ledger Import Rejected Rows
GET/api/amazon/:integrationInstance/awd/ledgers/import-runs/:importRun/rejected-rows/export
Download the rows this import refused, as CSV.
Returns a file (text/csv), not JSON.
The columns are the importer's own, plus a trailing Rejection Reason and Original Line. The importer keys on known headers and ignores the two extra ones, so a corrected file re-imports unchanged — correct the offending column and upload it again.
Re-uploading is safe: rows that already landed are recognised and skipped, so only the corrections are created.
A row whose column count did not match the header is exported with its original values in place, so it can be repaired rather than retyped.
Authentication: requires a Bearer token.
This endpoint currently requires session authentication; Personal Access Token scope support is in progress.
Request
Responses
- 200
- 401
- 403
- 404
- 429
Successful response
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.