VTEX-SDK-dotnet
VTEX-SDK-dotnet copied to clipboard
:shopping_cart: :gear: VTEX platform .NET SDK
VTEX SDK
🛒 ⚙️ VTEX platform .NET SDK.
CI/CD
Build status | Last commit | Tests | Coverage | Code Smells | LoC |
---|---|---|---|---|---|
Code Quality
Installation
Github Releases
Download the latest zip file from the Release page.
Nuget package manager
Package | Version | Downloads |
---|---|---|
VTEX | ||
VTEX.Health |
Features
Implements all features of VTEX API available at VTEX Developer Docs
Usage
Use your VTEX platform API keys. Follow this tutorial on how to: Creating appKeys and appTokens to authenticate integrations
var vtex = new VTEXContext("store name", "app-key-xyz", "app-token-secret-hash");
var order = vtex.GetOrder("V-123456789-01");
Console.WriteLine("Sequence: {1} | Value: {0} | ", order.Value, order.Sequence);