Sample code for 30+ languages & platforms
Swift

Walmart v3 Bulk Item Setup

See more Walmart v3 Examples

Updates items in bulk.

Chilkat Swift Downloads

Swift

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 POST \
    //   https://marketplace.walmartapis.com/v3/feeds?feedType=item \
    //   -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: multipart/form-data'
    //   -H 'Accept: application/xml'
    //   -F feed=@qa_data/walmart/itemFeed.xml

    let req = CkoHttpRequest()!
    req.httpVerb = "POST"
    req.path = "/v3/feeds?feedType=item"
    req.contentType = "multipart/form-data"
    success = req.addFile(forUpload2: "feed", path: "qa_data/walmart/itemFeed.xml", contentType: "application/xml")

    req.addHeader(name: "WM_QOS.CORRELATION_ID", value: "b3261d2d-028a-4ef7-8602-633c23200af6")
    req.addHeader(name: "Expect", value: "100-continue")
    req.addHeader(name: "Content-Type", value: "multipart/form-data")
    req.addHeader(name: "WM_SEC.ACCESS_TOKEN", value: "eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....")
    req.addHeader(name: "Accept", value: "application/xml")
    req.addHeader(name: "WM_SVC.NAME", value: "Walmart Marketplace")

    let resp = CkoHttpResponse()!
    success = http.httpSReq(domain: "marketplace.walmartapis.com", port: 443, ssl: true, request: req, response: resp)
    if success == false {
        print("\(http.lastErrorText!)")
        return
    }

    let sbResponseBody = CkoStringBuilder()!
    resp.getBodySb(sb: sbResponseBody)

    let xmlResponse = CkoXml()!
    xmlResponse.loadSb(sb: sbResponseBody, autoTrim: true)
    print("\(xmlResponse.getXml()!)")

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

    // <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    // <FeedAcknowledgement xmlns:ns2="http://walmart.com/">
    //     <feedId>E9C04D1FFD99479FBC1341D56DD5F930@AQMB_wA</feedId>
    // </FeedAcknowledgement>

    // 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 FeedAcknowledgement_xmlns_ns2: String?
    var feedId: String?

    FeedAcknowledgement_xmlns_ns2 = xmlResponse.getAttrValue(name: "xmlns:ns2")
    feedId = xmlResponse.getChildContent(tagPath: "feedId")

}