Questions tagged [walmart-api]

Use this tag to ask questions about any of the public Walmart APIs.

Walmart offers several public REST APIs for developers and their business partners:

Affiliate API - Used for searching and browsing the product catalog, listing trending products, retrieving customer reviews, finding store locations, and more.

Marketplace API - Helps sellers manage their items, orders, prices, promotions, inventory and reports on Walmart.com.

Drop Ship API - Tools allowing drop ship vendors (DSVs) to sell their products to millions of customers worldwide.

Warehouse Suppliers API - Allows warehouse suppliers to manage their items and sell their products though Walmart warehouses.

Content Provider API - Allows content service providers to bulk upload and manage digital content for Walmart supplier's products.

119 questions
1
vote
0 answers

How can I add orders to the US walmart marketplace that will show in there released orders api?

I'm a developer trying to integrate the walmart marketplace orders api into a website. I have been using there sandbox which works well enough to a point. I want to actually try adding orders of real items that we've added in walmart but I'm unaware…
1
vote
1 answer

Upload feed to Walmart the feed is created but get an error "Can not find any valid inventory in Feed."

Uploading an inventory feed to Walmart using C# creates the feed and the feed id is returned in the response but the feed has error "Can not find any valid inventory in Feed.". When I try the upload using Postman the feed goes through with no errir.…
Tom Libby
  • 33
  • 3
1
vote
1 answer

Trying to generate WM_SEC.AUTH_SIGNATURE (Walmart.io)

Has anyone here successfully generated the Walmart.io API signature key? I have tried to wrap my head around the java example but I am not having any luck of it as I have no Java experience. I saw that there is a Python example here on StackOverFlow…
Alex 111
  • 15
  • 4
1
vote
0 answers

Accessing Walmart API and setting up product mapping

To start: I'm completely new to working with APIs, so please bear with me. My first question is related to getting access to the Walmart API. I see the example code to generate time stamp and signature. How do I run this file? I've looked at YouTube…
1
vote
1 answer

Making a POST request with Nodejs to Walmart Catalog Services

I'm having some trouble making a POST request with Nodejs. I can make the request with curl, but when I try and to do the same thing in Nodejs, I just get junk data back. I'm calling a Walmart service. This is what my curl request looks like. This…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
1
vote
0 answers

product search filter by store

The Walmart Open API doesn't seem to honor storeID as a filter parameter. For example, I want my backend code (java) to search for BREAD filtered to a particular store. Is this possible with Any Open API ? Here is my…
1
vote
1 answer

Cannot make requests to Walmart API

I'm trying to make a request to the Walmart API here. https://walmart.io/docs/affiliate/product-lookup Here are the steps I'm following. I create my application here on Walmart and uploaded my public key. I created my keys following these…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
1
vote
1 answer

Not being able to click on a button using Python selenium with error ElementNotInteractableException

I am using Python Selenium to open https://www.walmart.com/ and then want to click "Create an account" tab under "Sign In Account" as shown in this Walmart website pic. The source code of button from Walmart website along with the image is as…
1
vote
0 answers

Request failed with status code 403 (Specific to Walmart API)

This is specific to the walmart api. I feel as though I configured the headers accurately and provided the required headers as they asked according to the documentation. However, I still get a 403 error. When I tested in postman, I still got a 403…
KJF
  • 31
  • 1
  • 4
1
vote
1 answer

How do I POST correctly an XML price file to Walmart Canada Marketplace API using Nodejs

I am trying to POST an XML pricing file to Walmart Canada with Nodejs. I receive a response code 200, but there is an error reading my file on the Walmart side. I believe it has something to do with the way Buffer.from() parses the file, that causes…
dave_dev
  • 75
  • 6
1
vote
1 answer

Walmart API- Existing Type error issue- Bulk Items Setup(multiple)

I am able to make API calls to Walmart API through a Postman the bulk items Setup(Multiple) A POST request Response in an Successfully comes in postman, but in Walmart FeedId seeing an error. I am try to another way through excel it's working fine…
Imrani
  • 11
  • 1
1
vote
0 answers

Get request works in postman many times but blocked in pyrometer/curl/nodejs after several times

I have a url https://search.mobile.walmart.com/v1/products-by-code/UPC/889842615319?storeId=1 ,It return a Json through browser or get request. When I use browser or postman to visit the url, it works well. But when I use curl/python to get the url,…
Guanhua Li
  • 11
  • 2
1
vote
0 answers

DSV Ship Multi-Line Multi-Quantity Orders

This may be a long shot but Walmart's support has been completely unhelpful. For orders containing 2 or more of the same item, Walmart breaks them out into lines of 1 quantity when working with the API. Ex:
Conner
  • 17
  • 5
1
vote
1 answer

WM_SEC.AUTH_SIGNATURE PHP Example

Walmart provides a java example to generate a signature that is required for their new apis: The signature generated using the private key and signing the values of consumer id, timestamp and key version. The TTL of this signature is 180 seconds.…
1
vote
2 answers

Walmart.io authentication issue - Could not authenticate in-request, auth signature in C#

I am trying to implement for C#, here is my code: WebClient downloader = new WebClient(); downloader.Headers["WM_CONSUMER.ID"] = consumerId; long intimestamp = (long)(DateTime.UtcNow - new…