Request ACES coverage and fitment attributes gap reports

Use these reports to identify catalog issues that affect automotive compatibility data.

  • Fitment missing ACES coverage identifies items that do not have ACES coverage on Walmart.
  • Fitment missing attributes identifies items with one or more required ACES attributes missing (for example, Part Terminology ID or vehicle qualifiers).

Endpoint

POST https://marketplace.walmartapis.com/v3/reports/reportRequests

Sample requests

Create a request for the report that lists items without ACES coverage:

POST https://marketplace.walmartapis.com/v3/reports/reportRequests
Authorization: Bearer <access_token>
Content-Type: application/json { "reportType": "FITMENT_MISSING_ACES_COVERAGE", "format": "CSV"
}

Create a request for the report that lists items with missing fitment attributes:

POST https://marketplace.walmartapis.com/v3/reports/reportRequests
Authorization: Bearer <access_token>
Content-Type: application/json { "reportType": "FITMENT_MISSING_ATTRIBUTES", "format": "CSV"
}

Note: Confirm the exact reportType token values with your reference; some portals list names without publishing the token.

Track and download

  1. Track status: GET /v3/reports/reportRequests/{requestId} returns RECEIVED, INPROGRESS, READY, or ERROR.
  2. Download file: GET /v3/reports/downloadReport?requestId={requestId} when status is READY.

Report fields

Both reports return the same columns. CSV header names are case sensitive.

FieldDescriptionOrigin
GTINGlobal Trade Item Number for the item.Seller
Item IDUnique Walmart item identifier.Walmart
Product NameName of the item.Seller
Brand AAIA IDFour-letter brand code defined by the Auto Care Association.Seller
Manufacturing Part NumberManufacturer or brand owner part number.Seller
Part Terminology IDPrimary key for ACES records. See the Auto Care Association for the correct ID.Seller

Next steps