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
1 answer

Parsing XML Response Objects [object(SimpleXMLElement)[x] from Walmart API Using CURL and SimpleXML

Using the v3/orders part of the Walmart API to retrieve orders on a given day. I am successfully receiving the response in an XML format.
Brian Bruman
  • 883
  • 12
  • 28
1
vote
0 answers

Java - Resttemplate - POST with multipart/form-data

I have to make a POST request to the WALMART API in order to upload my product onto their platform. I have an xml file containing the request to be sent. My request works in ARC/Postman (can see below example of how the working version is), problem…
1
vote
0 answers

Walmart (Java integration)- post feed with Resttemplate

I'm currently integrating Walmart into our application and I'm trying to post an Item Feed through the API method. I've already succeeded in posting a feed from the ARC tool, so I already know how to model the post request for it, my only problem is…
1
vote
2 answers

walmart upload an item feed sample xml

I need any sample working XML for upload an item using walmart api. I have tried a lot to create an XML but no success. Below is my testing XML Data.
Khaild Bashir
  • 37
  • 1
  • 1
  • 5
1
vote
3 answers

Walmart Developer API connection

I have celigo and I am trying to connect to the Walmart API manually. The walmart API wants an epoch timestamp and an authentication key which requires me to run a jar file, and I can get those two values. The time stamp and authentication key…
1
vote
1 answer

JAR execution is not accepting required arguments for Walmart Developer API authentication

Walmart Developers API provides a JAR files to assist with authentication for their API, which requires you to enter the entire GET URL with all arguments. The JAR download & information about the JAR executable can be found here:…
n drosos
  • 171
  • 2
  • 10
1
vote
1 answer

C# HTTP request 401 and 500 error

I've been working on the Walmart API but I keep getting either the 401 error or the 500 error when I run the code public void post() { byte[] data = Encoding.ASCII.GetBytes( $"username={user}&password={password}"); …
liz
  • 13
  • 3
1
vote
3 answers

Walmart Marketplace API Integration and Authentication

I am working on integrating my application Walmart Marketplace API using Ruby on Rails.   1. if i try to generate Auth signature for multiple parameters, it does not generate it and returns exceptions. I am using a Jar file to generate Auth…
1
vote
4 answers

Walmart Seller API POST not working, Gives 401 unauthorized in PHP only

I am trying to GET Walmart Seller API using CURL PHP to acknowledge. Can any one suggest which RSA PHP library i need to use ? So that Authentication Signature is verify while making calls to walmart. Any one experience with this ? $headers =…
Zeolr
  • 11
  • 1
  • 4
1
vote
1 answer

Post Item Walmart Partner API Python

I am using walmart partner api with python script. What I am trying to do is uploading item file using httplib. Here is my code: file = open('/opt/item.xml', 'rb') headers = { "Accept":ws_accept, "WM_SVC.NAME": wm_svc_name, …
0
votes
0 answers

How do we get these parameters in create carrier rate quote API in WFS: shipmentSource, customerId, customerName, locationName

I am trying to get carrier for an inbound shipment to Walmart fulfilment centre that I created. I am able to download shipment label for that shipment, the next step is to get carrier and its estimated charge. The API is shown in screenshot: API…
0
votes
0 answers

Puppeteer on click does not work neither triggers exception

It happens that through puppeteer and dart I'm trying to access this url https://www.walmart.com/ip/seort/688414897?offerId=1C77C470095B4DFAB58D48BB4396DC5A and click on the button with class="bg-transparent bn lh-solid pa0 sans-serif tc underline…
joelpires
  • 1
  • 1
  • 5
0
votes
0 answers

Walmart Shipment API give internal server error

I am implementing Walmart Shipment API as below and getting Walmart system internal error. I have check all headers are correct as i am able to generate token which is working in getOrders API but in shipment API it is not working. API URL :…
0
votes
0 answers

How to exclude grocery products when filtering Walmart API search results by category?

I would like to create a query string to filter products by multiple categories, since I would like to have groceries separate from any other product categories. I haven't found anything related to this topic on the walmart.io docs. So far I have…
0
votes
0 answers

Cannot understand Promotion API Documentation provided by Walmart

I'm trying to develop a console app using C# where I can Update the data existing of Walmart product. But while I was reading the documentation of bulk updating promotion I could not figure out what are the requirements of request body. Here is the…