The VTEX platform SDK for .NET projects (both Core & Framework).
Branch | Build status | Last commit | Tests |
---|---|---|---|
Master | |||
Develop |
Download the latest zip file from the Release page.
Package | Version | Downloads |
---|---|---|
VTEX | ||
VTEX.Health |
Implements all features of VTEX API available at VTEX Developer Docs
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);