Sample code for 30+ languages & platforms
PowerBuilder

Walmart v3 Get a Feed Status

See more Walmart v3 Examples

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

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_SbResponseBody
oleobject loo_XmlResponse
string ls_PartnerFeedResponse_xmlns_ns2
string ls_FeedId
string ls_FeedStatus
integer li_ItemsReceived
integer li_ItemsSucceeded
integer li_ItemsFailed
integer li_ItemsProcessing
integer li_Offset
integer li_Limit
integer i
integer li_Count_i
integer li_MartId
string ls_Sku
integer li_Index
string ls_IngestionStatus

li_Success = 0

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// 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'

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

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://marketplace.walmartapis.com/v3/feeds/{feedId}",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_XmlResponse = create oleobject
li_rc = loo_XmlResponse.ConnectToNewObject("Chilkat.Xml")

loo_XmlResponse.LoadSb(loo_SbResponseBody,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

ls_PartnerFeedResponse_xmlns_ns2 = loo_XmlResponse.GetAttrValue("xmlns:ns2")
ls_FeedId = loo_XmlResponse.GetChildContent("feedId")
ls_FeedStatus = loo_XmlResponse.GetChildContent("feedStatus")
li_ItemsReceived = loo_XmlResponse.GetChildIntValue("itemsReceived")
li_ItemsSucceeded = loo_XmlResponse.GetChildIntValue("itemsSucceeded")
li_ItemsFailed = loo_XmlResponse.GetChildIntValue("itemsFailed")
li_ItemsProcessing = loo_XmlResponse.GetChildIntValue("itemsProcessing")
li_Offset = loo_XmlResponse.GetChildIntValue("offset")
li_Limit = loo_XmlResponse.GetChildIntValue("limit")
i = 0
li_Count_i = loo_XmlResponse.NumChildrenHavingTag("itemDetails|itemIngestionStatus")
do while i < li_Count_i
    loo_XmlResponse.I = i
    li_MartId = loo_XmlResponse.GetChildIntValue("itemDetails|itemIngestionStatus[i]|martId")
    ls_Sku = loo_XmlResponse.GetChildContent("itemDetails|itemIngestionStatus[i]|sku")
    li_Index = loo_XmlResponse.GetChildIntValue("itemDetails|itemIngestionStatus[i]|index")
    ls_IngestionStatus = loo_XmlResponse.GetChildContent("itemDetails|itemIngestionStatus[i]|ingestionStatus")
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_XmlResponse