Walmart Feeds API

The Feeds API from Walmart — 3 operation(s) for feeds.

Documentation

📖
Documentation
https://developer.walmart.com/api/us/mp/feeds
📖
Documentation
https://developer.walmart.com/api/us/mp/items
📖
Documentation
https://developer.walmart.com/api/us/mp/price
📖
Documentation
https://developer.walmart.com/api/us/mp/promotion
📖
Documentation
https://developer.walmart.com/api/us/mp/orders
📖
Documentation
https://developer.walmart.com/api/us/mp/returns
📖
Documentation
https://developer.walmart.com/api/us/mp/inventory
📖
Documentation
https://developer.walmart.com/doc/us/us-supplier/us-supplier-cost/
📖
Documentation
https://developer.walmart.com/doc/us/us-supplier/us-supplier-inventory/
📖
Documentation
https://developer.walmart.com/doc/us/us-supplier/us-supplier-orders/
📖
Documentation
https://developer.walmart.com/doc/us/us-supplier/us-supplier-lagtime/
📖
Documentation
https://developer.walmart.com/doc/us/us-supplier/us-supplier-onrequestreports/
📖
Documentation
https://developer.walmart.com/api/us/supplier/auth
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-fulfillment/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-insights/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-lagtime/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-notifications/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-onrequestreports/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-assortmentrecommendations/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-reviews/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-rules/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-settings/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-sww/
📖
Documentation
https://developer.walmart.com/doc/us/mp/us-mp-utilities/

Specifications

Other Resources

OpenAPI Specification

walmart-feeds-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Walmart Cost Management Assortment Recommendations Feeds API
  description: 'This API allows drop ship vendor (DSV) users to update cost for items in bulk.


    **May 2024**<br>Built: 05/09/2024, 13:05:34

    '
  version: '1.0'
servers:
- url: https://api-gateway.walmart.com
  description: Production URL
- url: https://sandbox.walmartapis.com
  description: Sandbox URL
tags:
- name: Feeds
paths:
  /v3/feeds:
    get:
      tags:
      - Feeds
      summary: Walmart All Feed Statuses
      description: Returns the feed statuses for all the specified Feed IDs.
      operationId: getAllFeedStatuses
      parameters:
      - name: feedId
        in: query
        description: 'A unique ID returned from the Bulk Upload API, used for tracking the Feed File. Special characters must be escaped. (e.g., feedId: ''...3456@789...'' must be entered in the URL as ''...3456%40789).'
        required: false
        schema:
          type: string
      - name: offset
        in: query
        description: The object response to start with, where 0 is the first entity that can be requested. It can only be used when includeDetails is set to true.
        required: false
        schema:
          type: string
          default: '0'
      - name: limit
        in: query
        description: The number of entities to be returned. It cannot be more than 50 entities. Use it only when the includeDetails is set to true.
        required: false
        schema:
          type: string
          default: '50'
      - in: header
        name: WM_SEC.ACCESS_TOKEN
        description: The access token retrieved in the Token API call
        required: true
        schema:
          type: string
        example: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....
      - in: header
        name: WM_CONSUMER.CHANNEL.TYPE
        description: A unique ID to track the consumer request by channel. Use the Consumer Channel Type received during onboarding
        required: false
        schema:
          type: string
      - in: header
        name: WM_QOS.CORRELATION_ID
        description: A unique ID which identifies each API call and used to track and debug issues; use a random generated GUID for this ID
        required: true
        schema:
          type: string
        example: b3261d2d-028a-4ef7-8602-633c23200af6
      - in: header
        name: WM_SVC.NAME
        description: Walmart Service Name
        required: true
        schema:
          type: string
        example: Walmart Service Name
      responses:
        '200':
          description: Successful Operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  errors:
                    type: array
                    xml:
                      name: error
                    items:
                      required:
                      - code
                      type: object
                      properties:
                        code:
                          type: string
                        field:
                          type: string
                        description:
                          type: string
                        info:
                          type: string
                        severity:
                          type: string
                          enum:
                          - INFO
                          - WARN
                          - ERROR
                        category:
                          type: string
                          enum:
                          - APPLICATION
                          - SYSTEM
                          - REQUEST
                          - DATA
                        causes:
                          type: array
                          xml:
                            wrapped: true
                          items:
                            type: object
                            properties:
                              code:
                                type: string
                              field:
                                type: string
                              type:
                                type: string
                              description:
                                type: string
                            xml:
                              name: Cause
                        errorIdentifiers:
                          type: object
                          additionalProperties:
                            type: object
                        component:
                          type: string
                        type:
                          type: string
                        serviceName:
                          type: string
                        gatewayErrorCategory:
                          type: string
                          enum:
                          - INTERNAL_DATA_ERROR
                          - EXTERNAL_DATA_ERROR
                          - SYSTEM_ERROR
                      xml:
                        name: GatewayError
                  totalResults:
                    type: integer
                    description: Total number of feeds returned
                    format: int64
                  offset:
                    type: integer
                    description: The object response to the starting number, where 0 is the first available
                    format: int64
                  limit:
                    type: integer
                    description: The number of items to be returned
                    format: int32
                  results:
                    type: object
                    properties:
                      feed:
                        type: array
                        description: The feed status results
                        items:
                          type: object
                          properties:
                            feedId:
                              type: string
                              description: A unique ID used for tracking the Feed File
                            feedSource:
                              type: string
                              description: The source of the feed
                            feedType:
                              type: string
                              description: The feed type
                            partnerId:
                              type: string
                              description: The seller ID
                            itemsReceived:
                              type: integer
                              description: The number of items received
                              format: int64
                            itemsSucceeded:
                              type: integer
                              description: The number of items in the feed that have successfully processed
                              format: int64
                            itemsFailed:
                              type: integer
                              description: The number of items in the feed that failed due to a data or system error
                              format: int64
                            itemsProcessing:
                              type: integer
                              description: The number of items in the feed that are still in progress
                              format: int64
                            feedStatus:
                              type: string
                              description: 'Can be one of the following: RECEIVED, INPROGRESS, PROCESSED, or ERROR. For details, see the definitions listed under ''Feed Statuses'' at the beginning of this section.'
                            feedDate:
                              type: integer
                              description: 'The date and time the feed was submitted. Format: yyyymmddThh:mm:ss.xxxz'
                              format: int64
                            batchId:
                              type: string
                              description: The batch ID for the feed, if provided
                            modifiedDtm:
                              type: integer
                              description: 'The most recent time the feed was modified. Format: yyyymmddThh:mm:ss.xxxz'
                              format: int64
                          description: Information about the individual feed
                          xml:
                            name: feed
                    description: The feed status results
                xml:
                  name: list
              example:
                totalResults: 115
                offset: 0
                limit: 50
                results:
                  feed:
                  - feedId: 882DAFBDCAA0480786D1E0435FBC86D7@AU8BAgA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568148230011
                    modifiedDtm: 1568148252067
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 9398AC344EC44070A5B336D1E6D4EF27@AQYBAgA
                    feedType: MP_ITEM_PRICE_UPDATE
                    partnerId: '100009'
                    itemsReceived: 0
                    itemsSucceeded: 0
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: ERROR
                    feedDate: 1568138099492
                    modifiedDtm: 1568138099615
                    fileName: Affiliate Template v2.xlsx
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 57c99571-b460-43e2-bcd6-7d12f3ddd5a9
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: BBC958324F0B448B91C427896DB3F51C@AVQBAQA
                    feedSource: SELLER
                    feedType: LAGTIME
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568049322924
                    modifiedDtm: 1568049331055
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: A1BB0371E89A4C6E805C5E03CD47455E@AVUBAQA
                    feedType: PROMO_PRICE
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568049265518
                    modifiedDtm: 1568052865739
                    fileName: A1BB0371E89A4C6E805C5E03CD47455E@AVUBAQA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 1
                    itemTimeoutErrorCount: 0
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 211AE1C722C04422ADB87796FDCC4F57@AVMBAQA
                    feedType: MP_ITEM_PRICE_UPDATE
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 0
                    itemsFailed: 2
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568049233627
                    modifiedDtm: 1568148907027
                    fileName: 211AE1C722C04422ADB87796FDCC4F57@AVMBAQA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 2
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 9A4EF01BA2114E70BFD0D6D12AAFEC15@AUoBAgA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 2
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048973739
                    modifiedDtm: 1568049048863
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 8A50A5EE57F14E45B667C47992A3E0BD@AUoBAgA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 2
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048965096
                    modifiedDtm: 1568049038080
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: ECA4070459B3493BB71BAE2749A6FB25@AU8BAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048856557
                    modifiedDtm: 1568048858586
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 8FE721DDBA9A4C3BA50E30E8DFDDF72B@AU8BAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048838447
                    modifiedDtm: 1568048840545
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 927689CBBEC74727BE96CDB6D0ACA77F@AUoBAgA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048798609
                    modifiedDtm: 1568048818860
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: F1A8232ECD414FE690E1F63982DAA19B@AVUBAQA
                    feedType: PROMO_PRICE
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048737206
                    modifiedDtm: 1568052337222
                    fileName: F1A8232ECD414FE690E1F63982DAA19B@AVUBAQA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 1
                    itemTimeoutErrorCount: 0
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: D18E9A6E8611453E8B1C52EC2A303A75@AVMBAQA
                    feedType: MP_ITEM_PRICE_UPDATE
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 0
                    itemsFailed: 2
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048728005
                    modifiedDtm: 1568148913049
                    fileName: D18E9A6E8611453E8B1C52EC2A303A75@AVMBAQA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 2
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 7B587DAA557D4B5EBC502C8C02536D04@AVQBAQA
                    feedSource: SELLER
                    feedType: LAGTIME
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048628690
                    modifiedDtm: 1568048630058
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 58AF37E3E8A64F51A76CF9B360FC1A57@AVUBAgA
                    feedType: PROMO_PRICE
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048626676
                    modifiedDtm: 1568148916057
                    fileName: 58AF37E3E8A64F51A76CF9B360FC1A57@AVUBAgA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 1
                    itemTimeoutErrorCount: 0
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 4C08F5647ED84005A00030533D80930A@AVMBAgA
                    feedType: MP_ITEM_PRICE_UPDATE
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 0
                    itemsFailed: 2
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048625465
                    modifiedDtm: 1568148913051
                    fileName: 4C08F5647ED84005A00030533D80930A@AVMBAgA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 2
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 10BB24BF387349A8A2BE0CF1502860B6@AU8BAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048622893
                    modifiedDtm: 1568048625392
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 9DAADC7B08684AF0A47928050FA7E2C6@AU8BAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048622426
                    modifiedDtm: 1568048625444
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 3A91E87A225244698047A47B3ED6FBBA@AUoBAgA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568048620169
                    modifiedDtm: 1568048622815
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: BC2F04E6B4AE4BD7AF6EF40D39BFB079@AQsBAgA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 1
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568010439051
                    modifiedDtm: 1568010462577
                    fileName: Inventory (1) (1).xlsx
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 57c99571-b460-43e2-bcd6-7d12f3ddd5a9
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: BF48EBC404E54A79B7ACE3035545701C@AQsBAQA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 1
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1568008442377
                    modifiedDtm: 1568008450851
                    fileName: Inventory (1) (1).xlsx
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 57c99571-b460-43e2-bcd6-7d12f3ddd5a9
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: B5B2FBFC67D34E7CB3E0F16FB378D50C@AQQBAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567812473064
                    modifiedDtm: 1567812477183
                    fileName: Test Feed Filled.xlsm
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 57c99571-b460-43e2-bcd6-7d12f3ddd5a9
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: E55622058FFD4955A6B8EBC1E39CB132@AQQBAgA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567811755762
                    modifiedDtm: 1567811851669
                    fileName: Test Feed Filled.xlsm
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 57c99571-b460-43e2-bcd6-7d12f3ddd5a9
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 29EB78E584084E3880FCA09CFF1BB636@AVQBAQA
                    feedSource: SELLER
                    feedType: LAGTIME
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567809120555
                    modifiedDtm: 1567809126695
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 48935E83B3D94948B3E23AECA09E144E@AU8BAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567808833366
                    modifiedDtm: 1567808835533
                    fileName: 48935E83B3D94948B3E23AECA09E144E@AU8BAQA.json
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 384E9A0939C244B18CCD273BD21DDD3A@ARUBAgA
                    feedType: CPT_SELLER_ELIGIBILITY
                    partnerId: '100009'
                    itemsReceived: 0
                    itemsSucceeded: 0
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: ERROR
                    feedDate: 1567808525522
                    modifiedDtm: 1567808525661
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: E218B5E366084583A31262FF77794C93@AVMBAQA
                    feedType: MP_ITEM_PRICE_UPDATE
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 0
                    itemsFailed: 2
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567808418962
                    modifiedDtm: 1567812019011
                    fileName: E218B5E366084583A31262FF77794C93@AVMBAQA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 2
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 9B49E9A5740A49B58A9488CD9A87E60C@AVMBAQA
                    feedType: MP_ITEM_PRICE_UPDATE
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 0
                    itemsFailed: 2
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567808409685
                    modifiedDtm: 1567812009807
                    fileName: 9B49E9A5740A49B58A9488CD9A87E60C@AVMBAQA.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 2
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: F97B16172439448AB4219CF068802E31@AU8BAQA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567808288834
                    modifiedDtm: 1567808291795
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: E6990BEF62324C248CB0BA025E5FF7AB@AU8BAgA
                    feedSource: MARKETPLACE_PARTNER
                    feedType: item
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 1
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567808280306
                    modifiedDtm: 1567808286814
                    fileName: item.json
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 04C137945DF844AFB439D7988C51495E@AUoBAQA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 2
                    itemsSucceeded: 2
                    itemsFailed: 0
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567807052264
                    modifiedDtm: 1567807071997
                    itemDataErrorCount: 0
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 36EF1EF88DF248B89C8AC7B6227D82DE@AUoBAQA
                    feedSource: SELLER
                    feedType: inventory
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
                    feedDate: 1567806830615
                    modifiedDtm: 1567806839395
                    itemDataErrorCount: 1
                    itemSystemErrorCount: 0
                    itemTimeoutErrorCount: 0
                    channelType: 0f3e4dd4-0514-4346-b39d-af0e00ea066d
                    orgId: f5e3d40a-1267-46b9-a2f3-7811e4c0b2de
                  - feedId: 468B2B0B8E3A40DA8C8DAFCDD2441F00@AVUBAgA
                    feedType: PROMO_PRICE
                    partnerId: '100009'
                    itemsReceived: 1
                    itemsSucceeded: 0
                    itemsFailed: 1
                    itemsProcessing: 0
                    feedStatus: PROCESSED
    

# --- truncated at 32 KB (128 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/walmart/refs/heads/main/openapi/walmart-feeds-api-openapi.yml