Swift
Swift
Walmart v3 Get All Feed Statuses
See more Walmart v3 Examples
Returns the feed statuses for all the specified Feed IDs.Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
// Implements the following CURL command:
// curl -X GET \
// https://marketplace.walmartapis.com/v3/feeds?feedId={feedId}&limit={limit}&offset={offset} \
// -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'
http.setRequestHeader(name: "WM_QOS.CORRELATION_ID", value: "b3261d2d-028a-4ef7-8602-633c23200af6")
http.setRequestHeader(name: "Content-Type", value: "application/xml")
http.setRequestHeader(name: "WM_SEC.ACCESS_TOKEN", value: "eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....")
http.setRequestHeader(name: "Accept", value: "application/xml")
http.setRequestHeader(name: "WM_SVC.NAME", value: "Walmart Marketplace")
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb(url: "https://marketplace.walmartapis.com/v3/feeds?feedId={feedId}&limit={limit}&offset={offset}", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
let xmlResponse = CkoXml()!
xmlResponse.loadSb(sb: sbResponseBody, autoTrim: true)
// Sample XML response:
// (Sample code for parsing the XML response is shown below)
// <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
// <ns2:list xmlns:ns2="http://walmart.com/">
// <ns2:totalResults>2</ns2:totalResults>
// <ns2:offset>0</ns2:offset>
// <ns2:limit>50</ns2:limit>
// <ns2:results>
// <ns2:feed>
// <ns2:feedId>12234EGGT564YTEGFA@AQMBAQA</ns2:feedId>
// <ns2:feedSource>MARKETPLACE_PARTNER</ns2:feedSource>
// <ns2:feedType>item</ns2:feedType>
// <ns2:partnerId>1413254255</ns2:partnerId>
// <ns2:itemsReceived>1</ns2:itemsReceived>
// <ns2:itemsSucceeded>1</ns2:itemsSucceeded>
// <ns2:itemsFailed>0</ns2:itemsFailed>
// <ns2:itemsProcessing>0</ns2:itemsProcessing>
// <ns2:feedStatus>PROCESSED</ns2:feedStatus>
// <ns2:feedDate>2018-07-20T21:56:12.605Z</ns2:feedDate>
// <ns2:batchId>HP_REQUEST_BATCH</ns2:batchId>
// <ns2:modifiedDtm>2018-07-20T21:56:17.948Z</ns2:modifiedDtm>
// <ns2:fileName>ItemFeed99_ParadiseCounty_paperback.xml</ns2:fileName>
// <ns2:itemDataErrorCount>0</ns2:itemDataErrorCount>
// <ns2:itemSystemErrorCount>0</ns2:itemSystemErrorCount>
// <ns2:itemTimeoutErrorCount>0</ns2:itemTimeoutErrorCount>
// <ns2:channelType>WM_TEST</ns2:channelType>
// </ns2:feed>
// <ns2:feed>
// <ns2:feedId>12234EGGT564YTEGFA@AQMBAQA</ns2:feedId>
// <ns2:feedSource>MARKETPLACE_PARTNER</ns2:feedSource>
// <ns2:feedType>item</ns2:feedType>
// <ns2:partnerId>1413254255</ns2:partnerId>
// <ns2:itemsReceived>1</ns2:itemsReceived>
// <ns2:itemsSucceeded>1</ns2:itemsSucceeded>
// <ns2:itemsFailed>0</ns2:itemsFailed>
// <ns2:itemsProcessing>0</ns2:itemsProcessing>
// <ns2:feedStatus>PROCESSED</ns2:feedStatus>
// <ns2:feedDate>2018-07-20T21:56:12.605Z</ns2:feedDate>
// <ns2:batchId>HP_REQUEST_BATCH</ns2:batchId>
// <ns2:modifiedDtm>2018-07-20T21:56:17.948Z</ns2:modifiedDtm>
// <ns2:fileName>ItemFeed99_ParadiseCounty_paperback.xml</ns2:fileName>
// <ns2:itemDataErrorCount>0</ns2:itemDataErrorCount>
// <ns2:itemSystemErrorCount>0</ns2:itemSystemErrorCount>
// <ns2:itemTimeoutErrorCount>0</ns2:itemTimeoutErrorCount>
// <ns2:channelType>WM_TEST</ns2:channelType>
// </ns2:feed>
// </ns2:results>
// </ns2:list>
// Sample code for parsing the XML response...
// Use the following online tool to generate parsing code from sample XML:
// Generate Parsing Code from XML
var ns2_list_xmlns_ns2: String?
var ns2_totalResults: Int
var ns2_offset: Int
var ns2_limit: Int
var i: Int
var count_i: Int
var ns2_feedId: String?
var ns2_feedSource: String?
var ns2_feedType: String?
var ns2_partnerId: Int
var ns2_itemsReceived: Int
var ns2_itemsSucceeded: Int
var ns2_itemsFailed: Int
var ns2_itemsProcessing: Int
var ns2_feedStatus: String?
var ns2_feedDate: String?
var ns2_batchId: String?
var ns2_modifiedDtm: String?
var ns2_fileName: String?
var ns2_itemDataErrorCount: Int
var ns2_itemSystemErrorCount: Int
var ns2_itemTimeoutErrorCount: Int
var ns2_channelType: String?
ns2_list_xmlns_ns2 = xmlResponse.getAttrValue(name: "xmlns:ns2")
ns2_totalResults = xmlResponse.getChildIntValue(tagPath: "ns2:totalResults").intValue
ns2_offset = xmlResponse.getChildIntValue(tagPath: "ns2:offset").intValue
ns2_limit = xmlResponse.getChildIntValue(tagPath: "ns2:limit").intValue
i = 0
count_i = xmlResponse.numChildrenHavingTag(tag: "ns2:results|ns2:feed").intValue
while i < count_i {
xmlResponse.i = i
ns2_feedId = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:feedId")
ns2_feedSource = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:feedSource")
ns2_feedType = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:feedType")
ns2_partnerId = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:partnerId").intValue
ns2_itemsReceived = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemsReceived").intValue
ns2_itemsSucceeded = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemsSucceeded").intValue
ns2_itemsFailed = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemsFailed").intValue
ns2_itemsProcessing = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemsProcessing").intValue
ns2_feedStatus = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:feedStatus")
ns2_feedDate = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:feedDate")
ns2_batchId = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:batchId")
ns2_modifiedDtm = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:modifiedDtm")
ns2_fileName = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:fileName")
ns2_itemDataErrorCount = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemDataErrorCount").intValue
ns2_itemSystemErrorCount = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemSystemErrorCount").intValue
ns2_itemTimeoutErrorCount = xmlResponse.getChildIntValue(tagPath: "ns2:results|ns2:feed[i]|ns2:itemTimeoutErrorCount").intValue
ns2_channelType = xmlResponse.getChildContent(tagPath: "ns2:results|ns2:feed[i]|ns2:channelType")
i = i + 1
}
}