Sample code for 30+ languages & platforms
SQL Server

Walmart v3 Bulk Item Setup

See more Walmart v3 Examples

Updates items in bulk.

Chilkat SQL Server Downloads

SQL Server
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

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

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

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

    DECLARE @req int
    EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT

    EXEC sp_OASetProperty @req, 'HttpVerb', 'POST'
    EXEC sp_OASetProperty @req, 'Path', '/v3/feeds?feedType=item'
    EXEC sp_OASetProperty @req, 'ContentType', 'multipart/form-data'
    EXEC sp_OAMethod @req, 'AddFileForUpload2', @success OUT, 'feed', 'qa_data/walmart/itemFeed.xml', 'application/xml'

    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'WM_QOS.CORRELATION_ID', 'b3261d2d-028a-4ef7-8602-633c23200af6'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Expect', '100-continue'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Content-Type', 'multipart/form-data'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'WM_SEC.ACCESS_TOKEN', 'eyJraWQiOiIzZjVhYTFmNS1hYWE5LTQzM.....'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Accept', 'application/xml'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'WM_SVC.NAME', 'Walmart Marketplace'

    DECLARE @resp int
    EXEC @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT

    EXEC sp_OAMethod @http, 'HttpSReq', @success OUT, 'marketplace.walmartapis.com', 443, 1, @req, @resp
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @req
        EXEC @hr = sp_OADestroy @resp
        RETURN
      END

    DECLARE @sbResponseBody int
    EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT

    EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody

    DECLARE @xmlResponse int
    EXEC @hr = sp_OACreate 'Chilkat.Xml', @xmlResponse OUT

    EXEC sp_OAMethod @xmlResponse, 'LoadSb', @success OUT, @sbResponseBody, 1
    EXEC sp_OAMethod @xmlResponse, 'GetXml', @sTmp0 OUT
    PRINT @sTmp0

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

    DECLARE @FeedAcknowledgement_xmlns_ns2 nvarchar(4000)

    DECLARE @feedId nvarchar(4000)

    EXEC sp_OAMethod @xmlResponse, 'GetAttrValue', @FeedAcknowledgement_xmlns_ns2 OUT, 'xmlns:ns2'
    EXEC sp_OAMethod @xmlResponse, 'GetChildContent', @feedId OUT, 'feedId'

    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @req
    EXEC @hr = sp_OADestroy @resp
    EXEC @hr = sp_OADestroy @sbResponseBody
    EXEC @hr = sp_OADestroy @xmlResponse


END
GO