Working with Amazon Marketplace Web Service API in SSIS

19 January 2021
Chen Huang

Selling automation is a common requirement when working with Amazon Marketplace, which can help sellers grow the business exponentially. Amazon provides Amazon Marketplace Web Service (Amazon MWS) API to help Amazon sellers build reliable and scalable integrations that extend Amazon Marketplace into any business processes.

Working with Amazon MWS can be a little tricky as it requires developers to produce an Amazon Signature Version 2 which needs to be inserted in each HTTP request in order to successfully authenticate against the Amazon Marketplace API. We recognize the challenges faced by developers in working with such an API, particularly the requirement of generating the Amazon Version 2 signature in SSIS and making relevant service calls by processing XML based messages in order to facilitate efficient data integration. The purpose of this blog post is to show you how to achieve this in SSIS without writing a single line of code by leveraging the HTTP Connection Manager and XML Source component offered in the KingswaySoft SSIS Productivity Pack.

1. Register to use Amazon MWS

Before working with the Amazon MWS API, we need to register as a developer to use Amazon MWS and obtain the Amazon MWS Developer ID and Access Keys.

After the developer is registered, we need to authorize developer access to the selling accounts to get the MWS Auth Token and the Seller ID which will be used in the API authentication.

2. Establish Amazon MWS Connection

Once the developer registration is completed and the selling account is associated with the developer, we can configure the HTTP Connection Manager to establish the connection to the Amazon MWS API.

2.1 Set up Base URL

All the Amazon MWS endpoints can be found in the documentation page. In our example, we are connecting to an US account so that the Base URL in HTTP Connection Manager is set to “https://mws.amazonservices.com”.

Amazon MWS HTTP Connection Manager

2.2 Authentication

Setting up Amazon MWS authentication has been made extremely easy when using the HTTP Connection Manager shipped in our SSIS Productivity Pack product, as it has the built-in Amazon Signature authentication mode support.

Amazon MWS HTTP Connection Manager Authentication

To establish the Amazon MWS connection, simply choose “Amazon Signature” authentication mode in HTTP Connection Manager and select “Version 2” signature version, fill in the AWS Access Key and Access Secret.

3. Call Amazon MWS API

In this blog post, we will use XML Source component to call the Amazon MWS API ListOrders endpoint to fetch a list of orders created or updated during a defined time frame.

When getting orders from Amazon MWS API, the ListOrders endpoint also returns a “NextToken” value as the indicator to tell if there are more records. If “NextToken” is returned, we need to pass the “NextToken” value to ListOrdersByNextToken endpoint. If “NextToken” is not returned, there are no more orders to return. Based on the “NextToken” value, we can configure the XML Source component with the pagination strategy as the screenshot below to get all available orders:

Amazon MWS XML Source Configuration

The “Action” query string parameter is set to use an expression below to dynamically perform ListOrders action on the first request and perform ListOrdersByNextToken action on the following requests.

  • (Expression Mode) Action: @[RequestCount]==0?"ListOrders":"ListOrdersByNextToken"

The “CreateAfter” parameter is configured to get orders created in last five hours using an expression like this:

  • (Expression Mode) CreatedAfter: (DT_WSTR,20)(DT_DBDATE)GetUtcDate()+"T"+(DT_WSTR,20)(DT_DBTIME)DateAdd("hh" , -5, GetUtcDate() )

Request Again Rule checked the existence of “NextToken” value in the response to determine when to stop paging:

  • (Expression Mode) Action: ValueExistsInXml( @[ResponseBody], "/i:ListOrdersResponse/i:ListOrdersResult/i:NextToken", "i","https://mws.amazonservices.com/Orders/2013-09-01" )

Next, we can work on the XML document design to let the XML Source component to be able to parse the API response into columns data. Simply click the “Import” button to import from XML (Web) in XML Document Designer page to import design from the actual API response.

Amazon MWS Import XML Design

The import from XML (Web) button will generate a document design for the ListOrders action response. The ListOrdersByNextToken action has a slightly different response than the ListOrders action, however, we can easily configure XML Source document design based on the ListOrders XML response structure to handle both ListOrders and ListOrdersByNextToken responses:

Amazon MWS XML Source Document Design

At this moment, we have finished the XML Source component configuration. The next and last step is to implement the Data Flow design to use a Union All component to combines the ListOrders order records and ListOrdersByNextToken order records into one output.

Amazon MWS Data Flow Design

In this example, we are writing Amazon MWS orders into a SQL database table using Premium ADO NET Destination component, which is also offered in our SSIS Productivity Pack.

Sample XML Designer Settings File

We have prepared a sample XML designer settings file which can be imported to an XML Source component to help you get started with setting up the Amazon MWS integration portion of your project. The sample designer settings file can be found be downloaded here.

With the use of HTTP Connection Manager and XML Source component, working with Amazon Marketplace Web Service cannot be easier. We hope this post will give you a great sense on how to consume Amazon MWS API within SSIS.

Archive

November 2024 3 October 2024 1 September 2024 1 August 2024 2 July 2024 1 June 2024 1 May 2024 1 April 2024 2 March 2024 2 February 2024 2 January 2024 2 December 2023 1 November 2023 1 October 2023 2 August 2023 1 July 2023 2 June 2023 1 May 2023 2 April 2023 1 March 2023 1 February 2023 1 January 2023 2 December 2022 1 November 2022 2 October 2022 2 September 2022 2 August 2022 2 July 2022 3 June 2022 2 May 2022 2 April 2022 3 March 2022 2 February 2022 1 January 2022 2 December 2021 1 October 2021 1 September 2021 2 August 2021 2 July 2021 2 June 2021 1 May 2021 1 April 2021 2 March 2021 2 February 2021 2 January 2021 2 December 2020 2 November 2020 4 October 2020 1 September 2020 3 August 2020 2 July 2020 1 June 2020 2 May 2020 1 April 2020 1 March 2020 1 February 2020 1 January 2020 1 December 2019 1 November 2019 1 October 2019 1 May 2019 1 February 2019 1 December 2018 2 November 2018 1 October 2018 4 September 2018 1 August 2018 1 July 2018 1 June 2018 3 April 2018 3 March 2018 3 February 2018 3 January 2018 2 December 2017 1 April 2017 1 March 2017 7 December 2016 1 November 2016 2 October 2016 1 September 2016 4 August 2016 1 June 2016 1 May 2016 3 April 2016 1 August 2015 1 April 2015 10 August 2014 1 July 2014 1 June 2014 2 May 2014 2 February 2014 1 January 2014 2 October 2013 1 September 2013 2 August 2013 2 June 2013 5 May 2013 2 March 2013 1 February 2013 1 January 2013 1 December 2012 2 November 2012 2 September 2012 2 July 2012 1 May 2012 3 April 2012 2 March 2012 2 January 2012 1

Tags