Where errors appear
- My Imports → View details → View Errors
- Import Details page → Errors section
- The error code (e.g.,
404,409) - An easy-to-understand error message
- The original CSV line we processed
Error types & how to fix them
404 — Not found
What it means
- For
CREATE: We couldn’t find an item matching the lookup information you provided. - For
UPDATE: Either the item wasn’t found, or you don’t have an existing listing for it.
- Prefer a
URNfor precise matching, or verify your(GAME + SET + NAME)spelling matches Managem’s catalog. - If updating, confirm you already have a listing for the item. If not, run a
CREATEfirst.
409 — Conflict (multiple matches)
What it means
- Your identifiers matched more than one catalog item, or for
UPDATEwe found multiple listings for that item.
- Add a specific
URNor, so we can pinpoint the exact listing. - If you truly have duplicate active listings for the same item, archive/merge them in the UI, then re-run the import line.
Validation errors (bad types or values)
What it means- Something in the row failed basic validation (e.g., malformed number, unrecognized condition, invalid boolean).
- Ensure numeric columns (
PRICE,QUANTITY) contain integer numbers,HIDDENistrue/false, andCONDITIONmatches the options the values on Building a CSV.
Fix & re-run only the broken rows
You don’t need to re-upload the whole file.- Export/copy the error lines from the Errors section.
- Create a new CSV that keeps the same header and includes only the fixed rows.
- Upload that file as a new import.
Why a new import?
Imports are immutable runs. Creating a new import gives you a clean audit trail and clear success/failed counts for the retry.
Status recap
- FAILED — At least one row failed in any batch. Successful rows remain applied.
- COMPLETED — All batches finished and no errors were recorded.
- TERMINATED — You stopped the import. Everything processed up to that point remains applied.
- PAUSED — Waiting for you to Resume.
- RUNNING — Batches are actively processing.
Tips
- Use URNs whenever possible — fastest way to avoid
404errors. - Start small — a 5-10 line “smoke test” catches formatting issues before a big run.
- Keep notes in the
NOTEScolumn for your own audit trail (they’re not visible to customers). - Be deliberate with
REFERENCE— non-empty values set/update your integration ID, empty values clear it.