├── .gitignore ├── AmazonClient ├── AmazonClient.sln ├── AmazonClient │ ├── Ack │ │ ├── AckOrders.cs │ │ └── POSTResponse.cs │ ├── AmazonClient.csproj │ ├── App.config │ ├── AppCred.Designer.cs │ ├── AppCred.settings │ ├── InventoryModel │ │ └── InventoryDetails.cs │ ├── OrderModel │ │ ├── BillToParty.cs │ │ ├── Item.cs │ │ ├── NetPrice.cs │ │ ├── Order.cs │ │ ├── OrderDetails.cs │ │ ├── OrderedQuantity.cs │ │ ├── Orders.cs │ │ ├── Pagination.cs │ │ ├── Payload.cs │ │ ├── SellingParty.cs │ │ ├── ShipFromParty.cs │ │ ├── ShipToParty.cs │ │ ├── ShipmentDates.cs │ │ ├── ShipmentDetails.cs │ │ ├── TaxAmount.cs │ │ ├── TaxDetails.cs │ │ ├── TaxLineItem.cs │ │ ├── TaxTotal.cs │ │ └── TotalPrice.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── Signer │ ├── AWSAuthenticationCredentials.cs │ ├── AWSSigV4Signer.cs │ ├── AWSSignerHelper.cs │ ├── AuthHelper.cs │ ├── IDateHelper.cs │ ├── LWAAccessTokenRequestMeta.cs │ ├── LWAAccessTokenRequestMetaBuilder.cs │ ├── LWAAuthorizationCredentials.cs │ ├── LWAAuthorizationSigner.cs │ ├── LWAClient.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ScopeConstants.cs │ ├── Signer.csproj │ ├── SigningDateHelper.cs │ ├── Utils.cs │ └── packages.config ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/.gitignore -------------------------------------------------------------------------------- /AmazonClient/AmazonClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient.sln -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/Ack/AckOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/Ack/AckOrders.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/Ack/POSTResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/Ack/POSTResponse.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/AmazonClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/AmazonClient.csproj -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/App.config -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/AppCred.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/AppCred.Designer.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/AppCred.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/AppCred.settings -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/InventoryModel/InventoryDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/InventoryModel/InventoryDetails.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/BillToParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/BillToParty.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/Item.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/NetPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/NetPrice.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/Order.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/OrderDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/OrderDetails.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/OrderedQuantity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/OrderedQuantity.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/Orders.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/Pagination.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/Payload.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/SellingParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/SellingParty.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/ShipFromParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/ShipFromParty.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/ShipToParty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/ShipToParty.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/ShipmentDates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/ShipmentDates.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/ShipmentDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/ShipmentDetails.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/TaxAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/TaxAmount.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/TaxDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/TaxDetails.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/TaxLineItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/TaxLineItem.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/TaxTotal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/TaxTotal.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/OrderModel/TotalPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/OrderModel/TotalPrice.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/Program.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AmazonClient/AmazonClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/AmazonClient/packages.config -------------------------------------------------------------------------------- /AmazonClient/Signer/AWSAuthenticationCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/AWSAuthenticationCredentials.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/AWSSigV4Signer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/AWSSigV4Signer.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/AWSSignerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/AWSSignerHelper.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/AuthHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/AuthHelper.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/IDateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/IDateHelper.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/LWAAccessTokenRequestMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/LWAAccessTokenRequestMeta.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/LWAAccessTokenRequestMetaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/LWAAccessTokenRequestMetaBuilder.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/LWAAuthorizationCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/LWAAuthorizationCredentials.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/LWAAuthorizationSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/LWAAuthorizationSigner.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/LWAClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/LWAClient.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/ScopeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/ScopeConstants.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/Signer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/Signer.csproj -------------------------------------------------------------------------------- /AmazonClient/Signer/SigningDateHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/SigningDateHelper.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/Utils.cs -------------------------------------------------------------------------------- /AmazonClient/Signer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/AmazonClient/Signer/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafeasp/Selling-Partner-API/HEAD/README.md --------------------------------------------------------------------------------