Sample code for 30+ languages & platforms
Xbase++

Walmart v3 Get a Feed Status

See more Walmart v3 Examples

This API returns the feed status for a specified Feed ID.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oSbResponseBody
LOCAL oXmlResponse
LOCAL cPartnerFeedResponse_xmlns_ns2
LOCAL cFeedId
LOCAL cFeedStatus
LOCAL nItemsReceived
LOCAL nItemsSucceeded
LOCAL nItemsFailed
LOCAL nItemsProcessing
LOCAL nOffset
LOCAL nLimit
LOCAL i
LOCAL nCount_i
LOCAL nMartId
LOCAL cSku
LOCAL nIndex
LOCAL cIngestionStatus

nSuccess := 0

//  This example assumes the Chilkat API to have been previously unlocked.
//  See Global Unlock Sample for sample code.

oHttp := CreateObject("Chilkat.Http")

//  Implements the following CURL command:

//  curl -X GET \
//    https://marketplace.walmartapis.com/v3/feeds/{feedId} \
//    -H 'WM_SVC.NAME: Walmart Marketplace'
//    -H 'WM_SEC.ACCESS_TOKEN: eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....'
//    -H 'WM_QOS.CORRELATION_ID: b3261d2d-028a-4ef7-8602-633c23200af6'
//    -H 'Content-Type: application/xml'
//    -H 'Accept: application/xml'

oHttp:SetRequestHeader("WM_QOS.CORRELATION_ID", "b3261d2d-028a-4ef7-8602-633c23200af6")
oHttp:SetRequestHeader("Content-Type", "application/xml")
oHttp:SetRequestHeader("WM_SEC.ACCESS_TOKEN", "eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....")
oHttp:SetRequestHeader("Accept", "application/xml")
oHttp:SetRequestHeader("WM_SVC.NAME", "Walmart Marketplace")

oSbResponseBody := CreateObject("Chilkat.StringBuilder")
nSuccess := oHttp:QuickGetSb("https://marketplace.walmartapis.com/v3/feeds/{feedId}", oSbResponseBody)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oSbResponseBody:destroy()
    RETURN
ENDIF

oXmlResponse := CreateObject("Chilkat.Xml")
oXmlResponse:LoadSb(oSbResponseBody, 1)

//  Sample XML response:
//  (Sample code for parsing the XML response is shown below)

//  <?xml version="1.0" encoding="UTF-8"?>
//  <PartnerFeedResponse xmlns:ns2="http://walmart.com/">
//      <feedId>1c349f8f-aec0-411f-8454-ead47d12946f</feedId>
//      <feedStatus>PROCESSED</feedStatus>
//      <ingestionErrors/>
//      <itemsReceived>11</itemsReceived>
//      <itemsSucceeded>11</itemsSucceeded>
//      <itemsFailed>0</itemsFailed>
//      <itemsProcessing>0</itemsProcessing>
//      <offset>0</offset>
//      <limit>0</limit>
//      <itemDetails>
//          <itemIngestionStatus>
//              <martId>0</martId>
//              <sku>sku1</sku>
//              <index>8</index>
//              <ingestionStatus>SUCCESS</ingestionStatus>
//              <ingestionErrors/>
//          </itemIngestionStatus>
//          <itemIngestionStatus>
//              <martId>0</martId>
//              <sku>sku2</sku>
//              <index>6</index>
//              <ingestionStatus>SUCCESS</ingestionStatus>
//              <ingestionErrors/>
//          </itemIngestionStatus>
//          <itemIngestionStatus>
//              <martId>0</martId>
//              <sku>sku3</sku>
//              <index>9</index>
//              <ingestionStatus>SUCCESS</ingestionStatus>
//              <ingestionErrors/>
//          </itemIngestionStatus>
//      </itemDetails>
//  </PartnerFeedResponse>

//  Sample code for parsing the XML response...
//  Use the following online tool to generate parsing code from sample XML:
//  Generate Parsing Code from XML

cPartnerFeedResponse_xmlns_ns2 := oXmlResponse:GetAttrValue("xmlns:ns2")
cFeedId := oXmlResponse:GetChildContent("feedId")
cFeedStatus := oXmlResponse:GetChildContent("feedStatus")
nItemsReceived := oXmlResponse:GetChildIntValue("itemsReceived")
nItemsSucceeded := oXmlResponse:GetChildIntValue("itemsSucceeded")
nItemsFailed := oXmlResponse:GetChildIntValue("itemsFailed")
nItemsProcessing := oXmlResponse:GetChildIntValue("itemsProcessing")
nOffset := oXmlResponse:GetChildIntValue("offset")
nLimit := oXmlResponse:GetChildIntValue("limit")
i := 0
nCount_i := oXmlResponse:NumChildrenHavingTag("itemDetails|itemIngestionStatus")
DO WHILE i < nCount_i
    oXmlResponse:I := i
    nMartId := oXmlResponse:GetChildIntValue("itemDetails|itemIngestionStatus[i]|martId")
    cSku := oXmlResponse:GetChildContent("itemDetails|itemIngestionStatus[i]|sku")
    nIndex := oXmlResponse:GetChildIntValue("itemDetails|itemIngestionStatus[i]|index")
    cIngestionStatus := oXmlResponse:GetChildContent("itemDetails|itemIngestionStatus[i]|ingestionStatus")
    i := i + 1
ENDDO

oHttp:destroy()
oSbResponseBody:destroy()
oXmlResponse:destroy()