CSharpAmazonSpAPI 1.0.12

There is a newer version of this package available.
See the version list below for details.
dotnet add package CSharpAmazonSpAPI --version 1.0.12                
NuGet\Install-Package CSharpAmazonSpAPI -Version 1.0.12                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpAmazonSpAPI" Version="1.0.12" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharpAmazonSpAPI --version 1.0.12                
#r "nuget: CSharpAmazonSpAPI, 1.0.12"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CSharpAmazonSpAPI as a Cake Addin
#addin nuget:?package=CSharpAmazonSpAPI&version=1.0.12

// Install CSharpAmazonSpAPI as a Cake Tool
#tool nuget:?package=CSharpAmazonSpAPI&version=1.0.12                

Amazon Selling Partner API C# Build status NuGet

This is an API Binding in .Net C# for the new Amazon Selling Partner API.

This library is based on the output of swagger-codegen with the OpenAPI files provided by Amazon and has been modified by the contributors.

The purpose of this package is to have an easy way of getting started with the Amazon Selling Partner API.


Requirements


Tasks


Installation NuGet

Install-Package CSharpAmazonSpAPI

Keys

Name Description
AccessKey AWS USER ACCESS KEY
SecretKey AWS USER SECRET KEY
RoleArn AWS IAM Role ARN (needs permission to “Assume Role” STS)
Region Marketplace region
ClientId Your amazon app id
ClientSecret Your amazon app secret

For more information about keys please check Amazon Selling Partner Api developer guide.


Usage

Configration

    AmazonConnection amazonConnection = new AmazonConnection(new AmazonCredential()
    {
         AccessKey = "AKIAXXXXXXXXXXXXXXX",
         SecretKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
         RoleArn = "arn:aws:iam::XXXXXXXXXXXXX:role/XXXXXXXXXXXX",
         ClientId = "amzn1.application-XXX-client.XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
         ClientSecret = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
          RefreshToken= "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
     });

Order Lsit ,For more orders sample please check Here.

   var orders= amazonConnection.Orders.ListOrders();
            

Order Lsit with parameter

            ParameterOrderList serachOrderList = new ParameterOrderList();
            serachOrderList.CreatedAfter = DateTime.UtcNow.AddHours(-24);
            serachOrderList.OrderStatuses = new List<OrderStatuses>();
            serachOrderList.OrderStatuses.Add(OrderStatuses.Unshipped);
            serachOrderList.MarketplaceIds = new List<string> { MarketPlace.UnitedArabEmirates.ID };

            var orders = amazonConnection.Orders.GetOrders(serachOrderList);
            

Report Lsit ,For more report sample please check Here.

            var parameters = new ParameterReportList();
            parameters.pageSize = 100;
            parameters.reportTypes = new List<ReportTypes>();
            parameters.reportTypes.Add(ReportTypes.GET_AFN_INVENTORY_DATA);
            parameters.marketplaceIds = new List<string>();
            parameters.marketplaceIds.Add(MarketPlace.UnitedArabEmirates.ID);
            var reports=amazonConnection.Reports.GetReports(parameters);

Custom Report

            var parameters = new ParameterCreateReportSpecification();
            parameters.reportType = ReportTypes.GET_FLAT_FILE_ALL_ORDERS_DATA_BY_LAST_UPDATE_GENERAL;
            parameters.dataStartTime = DateTime.UtcNow.AddDays(-30);
            parameters.dataEndTime = DateTime.UtcNow.AddDays(-10);
            parameters.marketplaceIds = new MarketplaceIds();
            parameters.marketplaceIds.Add(MarketPlace.UnitedArabEmirates.ID);
            parameters.reportOptions = new AmazonSpApiSDK.Models.Reports.ReportOptions();

            var report= amazonConnection.Reports.CreateReport(parameters);

Report GET_MERCHANT_LISTINGS_ALL_DATA sample

            var parameters = new ParameterCreateReportSpecification();
            parameters.reportType = ReportTypes.GET_MERCHANT_LISTINGS_ALL_DATA;

            parameters.marketplaceIds = new MarketplaceIds();
            parameters.marketplaceIds.Add(MarketPlace.UnitedArabEmirates.ID);

            parameters.reportOptions = new FikaAmazonAPI.AmazonSpApiSDK.Models.Reports.ReportOptions();

            var reportId = amazonConnection.Reports.CreateReport(parameters);
            var filePath = string.Empty;
            string ReportDocumentId = string.Empty;

            while (string.IsNullOrEmpty(ReportDocumentId))
            {
                Thread.Sleep(1000 * 60);
                var reportData = amazonConnection.Reports.GetReport(reportId);
                if (!string.IsNullOrEmpty(reportData.ReportDocumentId))
                {
                    filePath = amazonConnection.Reports.GetReportFile(reportData.ReportDocumentId);
                    break;
                }
            }

            //filePath for report

Product Pricing ,For more Pricing sample please check Here.


var data = amazonConnection.ProductPricing.GetPricing(new Parameter.ProductPricing.ParameterGetPricing()
            {
                MarketplaceId = MarketPlace.UnitedArabEmirates.ID,
                Asins = new string[] { "B00CZC5F0G" }
            });

Product Competitive Price


var data = amazonConnection.ProductPricing.GetCompetitivePricing(new Parameter.ProductPricing.ParameterGetCompetitivePricing()
            {
                MarketplaceId = MarketPlace.UnitedArabEmirates.ID,
                Asins = new string[] { "B00CZC5F0G" },

            });

Notifications Create Destination,For more Notifications sample please check Here.


//EventBridge
            var data = amazonConnection.Notification.CreateDestination(new AmazonSpApiSDK.Models.Notifications.CreateDestinationRequest()
            {
                Name = "CompanyName",
                ResourceSpecification = new AmazonSpApiSDK.Models.Notifications.DestinationResourceSpecification()
                {
                    EventBridge = new AmazonSpApiSDK.Models.Notifications.EventBridgeResourceSpecification("us-east-2", "999999999")
                }
            });

            //SQS
            var dataSqs = amazonConnection.Notification.CreateDestination(new AmazonSpApiSDK.Models.Notifications.CreateDestinationRequest()
            {
                Name = "CompanyName_AE",
                ResourceSpecification = new AmazonSpApiSDK.Models.Notifications.DestinationResourceSpecification
                {
                    Sqs = new AmazonSpApiSDK.Models.Notifications.SqsResource("arn:aws:sqs:us-east-2:9999999999999:NAME")
                }
            });

Notifications read messages


            var SQL_URL = "https://sqs.us-east-2.amazonaws.com/9999999999999/IUSER_SQS";
            ParameterMessageReceiver param = new ParameterMessageReceiver(Environment.GetEnvironmentVariable("AccessKey"), Environment.GetEnvironmentVariable("SecretKey"), SQL_URL, Amazon.RegionEndpoint.USEast2);

            CustomMessageReceiver messageReceiver = new CustomMessageReceiver();


            amazonConnection.Notification.StartReceivingNotificationMessages(param, messageReceiver);


        public class CustomMessageReceiver : IMessageReceiver
        {

            public void ErrorCatch(Exception ex)
            {
                //Your code here
            }

            public void NewMessageRevicedTriger(NotificationMessageResponce message)
            {
                //Your Code here
            }
        }

Feed Submit

Here Full sample for submit feed to change price and generate XML and get final report for result same as in doc. Notes: not all feed type finished as its big work and effort but all classes are partial for easy change and you can generate xml outside and use our library for get data , now we support only sumit existed product , change quantity and change price

            ConstructFeedService createDocument = new ConstructFeedService("A3J37AJU4O9RHK", "1.02");

            var list = new List<PriceMessage>();
            list.Add(new PriceMessage()
            {
                SKU = "8201031206122...",
                StandardPrice = new StandardPrice()
                {
                    currency = BaseCurrencyCode.AED.ToString(),
                    Value = (201.0522M).ToString("0.00")
                }
            });
            createDocument.AddPriceMessage(list);

            var xml = createDocument.GetXML();

            var feedID = amazonConnection.Feed.SubmitFeed(xml, FeedType.POST_PRODUCT_PRICING_DATA);

            Thread.Sleep(1000*30);

            var feedOutput=amazonConnection.Feed.GetFeed(feedID);

            var outPut=amazonConnection.Feed.GetFeedDocument(feedOutput.ResultFeedDocumentId);

            var reportOutpit = outPut.Url;


Q & A

If you have questions, please ask in GitHub discussions

discussions


ToDo

  • Improve documentation

Notes

If you are looking for a complete Feedback solution, you might want to consider giving Soon.se a shot.


Support & Consultation

We offer consultation on everything SP-API related. Book your meeting here:

Book Meeting


Thanks

Thanks go out to everybody who worked on this package.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CSharpAmazonSpAPI:

Package Downloads
BizDoc.Infrastructure.Amazon

Amazon for BizDoc

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.31 203 11/15/2024
1.7.30 687 11/4/2024
1.7.29 653 10/18/2024
1.7.28 644 10/4/2024
1.7.27 914 9/25/2024
1.7.26 217 9/23/2024
1.7.24 792 9/11/2024
1.7.23 261 9/6/2024
1.7.22 2,430 7/13/2024
1.7.21 150 7/10/2024
1.7.20 93 7/10/2024
1.7.19 96 7/10/2024
1.7.18 7,999 4/22/2024
1.7.17 2,484 3/11/2024
1.7.16 152 3/10/2024
1.7.15 280 3/6/2024
1.7.14 544 3/3/2024
1.7.13 3,506 2/1/2024
1.7.12 344 1/29/2024
1.7.11 947 1/16/2024
1.7.10 1,604 12/30/2023
1.7.9 1,161 12/11/2023
1.7.8 10,202 10/26/2023
1.7.7 359 10/24/2023
1.7.5 995 10/13/2023
1.7.4 581 10/8/2023
1.7.3 896 9/21/2023
1.7.2 899 8/30/2023
1.7.1 2,829 8/9/2023
1.6.11 8,606 7/3/2023
1.6.9 414 7/3/2023
1.6.8 1,341 6/24/2023
1.6.7 760 6/17/2023
1.6.6 4,357 5/18/2023
1.6.5 1,853 5/7/2023
1.6.4 4,569 4/20/2023
1.6.3 333 4/18/2023
1.6.2 8,198 3/24/2023
1.6.1 507 3/18/2023
1.6.0 734 3/18/2023
1.5.35 925 3/14/2023
1.5.34 258 3/14/2023
1.5.33 2,131 2/10/2023
1.5.32 1,684 1/24/2023
1.5.31 783 1/11/2023
1.5.30 1,882 1/3/2023
1.5.29 386 12/28/2022
1.5.28 408 12/23/2022
1.5.27 452 12/18/2022
1.5.26 698 12/13/2022
1.5.25 3,063 12/11/2022
1.5.24 564 12/2/2022
1.5.23 406 12/1/2022
1.5.22 393 12/1/2022
1.5.21 853 11/27/2022
1.5.20 374 11/26/2022
1.5.19 415 11/23/2022
1.5.18 596 11/22/2022
1.5.17 372 11/21/2022
1.5.16 408 11/17/2022
1.5.15 701 11/16/2022
1.5.14 384 11/16/2022
1.5.13 364 11/16/2022
1.5.12 847 11/7/2022
1.5.11 416 11/7/2022
1.5.10 422 11/6/2022
1.5.9 450 11/6/2022
1.5.8 411 11/3/2022
1.5.7 463 11/2/2022
1.5.6 467 11/1/2022
1.5.5 2,011 10/24/2022
1.5.4 425 10/24/2022
1.5.3 495 10/23/2022
1.5.2 969 10/19/2022
1.5.1 504 10/18/2022
1.5.0 1,025 10/18/2022
1.5.0-alpha1 152 10/7/2022
1.4.32 6,088 10/6/2022
1.4.31 608 10/5/2022
1.4.30 1,703 9/22/2022
1.4.29 521 9/22/2022
1.4.28 729 9/17/2022
1.4.27 562 9/12/2022
1.4.26 625 9/6/2022
1.4.25 504 9/4/2022
1.4.24 485 9/2/2022
1.4.23 1,202 8/18/2022
1.4.22 1,642 8/16/2022
1.4.21 552 8/15/2022
1.4.20 2,808 8/14/2022
1.4.19 2,457 8/12/2022
1.4.18 508 8/11/2022
1.4.17 6,676 8/8/2022
1.4.16 501 8/8/2022
1.4.15 576 8/5/2022
1.4.14 803 8/4/2022
1.4.13 698 7/29/2022
1.4.12 480 7/29/2022
1.4.11 509 7/29/2022
1.4.10 576 7/27/2022
1.4.9 486 7/27/2022
1.4.8 776 7/27/2022
1.4.7 714 7/26/2022
1.4.6 596 7/24/2022
1.4.5 664 7/18/2022
1.4.4 615 7/14/2022
1.4.3 1,371 7/13/2022
1.4.2 556 7/11/2022
1.4.1 2,191 7/3/2022
1.4.0 517 6/30/2022
1.3.21 508 6/30/2022
1.3.20 550 6/29/2022
1.3.19 521 6/28/2022
1.3.18 514 6/27/2022
1.3.17 477 6/27/2022
1.3.16 3,167 6/14/2022
1.3.15 502 6/14/2022
1.3.14 646 6/11/2022
1.3.13 1,275 6/3/2022
1.3.12 551 5/31/2022
1.3.11 514 5/28/2022
1.3.10 1,672 5/19/2022
1.3.9 749 5/14/2022
1.3.8 592 5/10/2022
1.3.7 501 5/10/2022
1.3.5 1,112 5/5/2022
1.3.4 528 5/2/2022
1.3.3 784 4/29/2022
1.3.2 694 4/15/2022
1.3.1 504 4/15/2022
1.3.0 3,564 3/17/2022
1.2.10 957 3/16/2022
1.2.9 830 3/12/2022
1.2.8 511 3/12/2022
1.2.7 1,627 3/10/2022
1.2.6 814 3/7/2022
1.2.5 522 3/5/2022
1.2.4 537 3/4/2022
1.2.3 565 3/4/2022
1.2.2 532 3/2/2022
1.2.1 563 3/1/2022
1.2.0 520 2/26/2022
1.1.5 605 2/20/2022
1.1.4 500 2/18/2022
1.1.3 501 2/18/2022
1.1.2 765 2/17/2022
1.1.0 660 2/14/2022
1.1.0-beta 194 2/14/2022
1.1.0-alpha.5 122 2/12/2022
1.1.0-alpha.4 121 2/12/2022
1.1.0-alpha.3 118 2/12/2022
1.1.0-alpha.2 118 2/12/2022
1.1.0-alpha.1 125 2/12/2022
1.0.45.3-alpha 171 2/12/2022
1.0.45.2-alpha 209 2/12/2022
1.0.45.1-alpha 180 2/12/2022
1.0.45-alpha.4 117 2/12/2022
1.0.45-alpha 188 2/12/2022
1.0.44 671 2/9/2022
1.0.43 521 2/2/2022
1.0.42 525 1/27/2022
1.0.41 511 1/22/2022
1.0.40 503 1/22/2022
1.0.39 474 1/22/2022
1.0.38 526 1/20/2022
1.0.37 674 1/17/2022
1.0.36 532 1/16/2022
1.0.35 518 1/15/2022
1.0.34 519 1/12/2022
1.0.33 526 1/11/2022
1.0.32 362 1/10/2022
1.0.31 434 1/9/2022
1.0.30 319 1/9/2022
1.0.29 366 1/6/2022
1.0.28 387 1/5/2022
1.0.27 350 1/4/2022
1.0.26 307 1/4/2022
1.0.25 355 1/1/2022
1.0.24 679 12/31/2021
1.0.23 326 12/31/2021
1.0.22 394 12/23/2021
1.0.21 366 12/21/2021
1.0.20 370 12/18/2021
1.0.18 402 12/6/2021
1.0.17 2,981 11/25/2021
1.0.16 363 11/23/2021
1.0.15 350 11/23/2021
1.0.14 1,609 11/19/2021
1.0.13 586 10/23/2021
1.0.12 391 10/14/2021
1.0.11 402 10/11/2021
1.0.10 436 10/3/2021
1.0.9 732 9/25/2021 1.0.9 is deprecated because it is no longer maintained.
1.0.8 655 9/25/2021 1.0.8 is deprecated because it is no longer maintained.
1.0.7 519 9/25/2021 1.0.7 is deprecated because it is no longer maintained.
1.0.6 427 9/24/2021 1.0.6 is deprecated because it is no longer maintained.
1.0.5 539 9/20/2021 1.0.5 is deprecated because it is no longer maintained.
1.0.4 475 9/18/2021 1.0.4 is deprecated because it is no longer maintained.
1.0.3 435 9/18/2021 1.0.3 is deprecated because it is no longer maintained.
1.0.2 502 9/17/2021 1.0.2 is deprecated because it is no longer maintained.
1.0.1 528 9/2/2021 1.0.1 is deprecated because it is no longer maintained and has critical bugs.
1.0.0 562 8/17/2021 1.0.0 is deprecated because it is no longer maintained and has critical bugs.