VTEX 3.0.9

There is a newer version of this package available.
See the version list below for details.
dotnet add package VTEX --version 3.0.9
                    
NuGet\Install-Package VTEX -Version 3.0.9
                    
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="VTEX" Version="3.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="VTEX" Version="3.0.9" />
                    
Directory.Packages.props
<PackageReference Include="VTEX" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add VTEX --version 3.0.9
                    
#r "nuget: VTEX, 3.0.9"
                    
#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.
#:package VTEX@3.0.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=VTEX&version=3.0.9
                    
Install as a Cake Addin
#tool nuget:?package=VTEX&version=3.0.9
                    
Install as a Cake Tool

VTEX SDK

🛒 ⚙️ VTEX platform .NET SDK.

GitHub license Time tracker

VTEX logo

CI/CD

Build status Last commit Tests Coverage Code Smells LoC
Build status GitHub last commit AppVeyor tests (branch) Coverage Code Smells Lines of Code

Code Quality

Codacy Badge Codacy Badge

codecov CodeFactor

Maintainability Test Coverage

Quality Gate Status Maintainability Rating

Technical Debt Duplicated Lines (%)

Reliability Rating Security Rating

Bugs Vulnerabilities


Installation

Github Releases

GitHub last release Github All Releases

Download the latest .zip file from the Releases page.

Nuget package manager

Package Version Downloads
VTEX VTEX NuGet Version VTEX NuGet Downloads
VTEX.Health VTEX Health NuGet Version VTEX Health NuGet Downloads

Features


Usage

Dependency Injection (IoC)

Register the VTEX Service using the CrispyWaffle toolkit's Service Locator:

var connectionVtex = new Connection(); // Fill in your details
ServiceLocator.Register(() => new VTEXContext(connectionVtex), LifeStyle.Singleton);
Constructor Injection
public class MyClass
{
    private readonly VTEXContext _vtexContext;

    public MyClass(VTEXContext vtexContext)
    {
        _vtexContext = vtexContext ?? throw new ArgumentNullException(nameof(vtexContext));
    }
}
Manual Resolution
var vtexContext = ServiceLocator.Resolve<VTEXContext>();

Authentication

Authenticate with VTEX platform API keys. Refer to this tutorial.

var vtex = new VTEXContext("store name", "app-key-xyz", "app-token-secret-hash");
var order = vtex.GetOrder("V-123456789-01");
Console.WriteLine($"Sequence: {order.Sequence} | Value: {order.Value}");

Support

If you need help, feel free to open an issue.


Contributing

Contributions are welcome! Check out the CONTRIBUTING.md guide for details.


Contributors

Thanks to all contributors! 💙

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/guibranco"> <img src="https://avatars.githubusercontent.com/u/3362854?v=4" width="100;" alt="guibranco"/> <br /> <sub><b>Guilherme Branco Stracini</b></sub> </a> </td> <td align="center"> <a href="https://github.com/joaovaladares"> <img src="https://avatars.githubusercontent.com/u/42593399?v=4" width="100;" alt="joaovaladares"/> <br /> <sub><b>João Vítor Valadares</b></sub> </a> </td> <td align="center"> <a href="https://github.com/viktoriussuwandi"> <img src="https://avatars.githubusercontent.com/u/68414300?v=4" width="100;" alt="viktoriussuwandi"/> <br /> <sub><b>Viktorius Suwandi</b></sub> </a> </td> </tr> <tbody> </table>

Bots

<table> <tbody> <tr> <td align="center"> <a href="https://github.com/dependabot[bot]"> <img src="https://avatars.githubusercontent.com/in/29110?v=4" width="100;" alt="dependabot[bot]"/> <br /> <sub><b>dependabot[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/github-actions[bot]"> <img src="https://avatars.githubusercontent.com/in/15368?v=4" width="100;" alt="github-actions[bot]"/> <br /> <sub><b>github-actions[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/penify-dev[bot]"> <img src="https://avatars.githubusercontent.com/in/399279?v=4" width="100;" alt="penify-dev[bot]"/> <br /> <sub><b>penify-dev[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/stack-file[bot]"> <img src="https://avatars.githubusercontent.com/in/408123?v=4" width="100;" alt="stack-file[bot]"/> <br /> <sub><b>stack-file[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/codefactor-io[bot]"> <img src="https://avatars.githubusercontent.com/in/25603?v=4" width="100;" alt="codefactor-io[bot]"/> <br /> <sub><b>codefactor-io[bot]</b></sub> </a> </td> <td align="center"> <a href="https://github.com/snyk-bot"> <img src="https://avatars.githubusercontent.com/u/19733683?v=4" width="100;" alt="snyk-bot"/> <br /> <sub><b>Snyk bot</b></sub> </a> </td> </tr> <tbody> </table>

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 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 is compatible. 
.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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.463 155 10/6/2025
3.0.460 159 10/6/2025
3.0.455 161 9/29/2025
3.0.452 220 9/22/2025
3.0.449 206 9/15/2025
3.0.446 205 9/15/2025
3.0.443 205 9/15/2025
3.0.436 155 9/8/2025
3.0.433 149 9/8/2025
3.0.430 153 9/8/2025
3.0.425 152 9/8/2025
3.0.416 176 9/4/2025
3.0.413 179 9/4/2025
3.0.408 169 9/1/2025
3.0.399 226 8/25/2025
3.0.390 163 8/18/2025
3.0.370 153 7/28/2025
3.0.365 144 7/28/2025
3.0.360 143 7/28/2025
3.0.351 146 7/28/2025
3.0.342 491 7/23/2025
3.0.337 543 7/23/2025
3.0.334 544 7/23/2025
3.0.329 540 7/23/2025
3.0.326 543 7/23/2025
3.0.315 178 7/14/2025
3.0.312 171 7/14/2025
3.0.309 169 7/14/2025
3.0.302 175 7/7/2025
3.0.299 177 7/7/2025
3.0.296 181 6/30/2025
3.0.293 172 6/30/2025
3.0.288 197 6/23/2025
3.0.285 189 6/23/2025
3.0.282 199 6/16/2025
3.0.279 192 6/16/2025
3.0.276 247 6/9/2025
3.0.273 255 6/9/2025
3.0.270 200 6/2/2025
3.0.267 212 6/2/2025
3.0.262 199 5/26/2025
3.0.259 198 5/26/2025
3.0.256 203 5/19/2025
3.0.253 195 5/19/2025
3.0.250 198 5/19/2025
3.0.243 247 5/12/2025
3.0.240 206 5/8/2025
3.0.231 213 5/5/2025
3.0.226 224 4/28/2025
3.0.219 232 4/22/2025
3.0.212 232 4/21/2025
3.0.209 247 4/14/2025
3.0.206 222 4/14/2025
3.0.201 229 4/14/2025
3.0.194 233 4/7/2025
3.0.191 231 4/7/2025
3.0.186 215 3/31/2025
3.0.183 405 3/24/2025
3.0.180 388 3/24/2025
3.0.175 400 3/24/2025
3.0.172 214 3/17/2025
3.0.169 215 3/17/2025
3.0.166 204 3/17/2025
3.0.163 218 3/17/2025
3.0.154 199 3/17/2025
3.0.145 232 3/10/2025
3.0.142 242 3/10/2025
3.0.139 188 3/3/2025
3.0.136 183 3/3/2025
3.0.131 155 2/24/2025
3.0.128 162 2/24/2025
3.0.123 158 2/24/2025
3.0.118 174 2/17/2025
3.0.115 176 2/17/2025
3.0.110 179 2/17/2025
3.0.103 172 2/17/2025
3.0.94 179 2/17/2025
3.0.91 167 2/10/2025
3.0.88 183 2/10/2025
3.0.85 180 2/10/2025
3.0.78 145 2/3/2025
3.0.75 162 2/3/2025
3.0.72 179 2/3/2025
3.0.65 171 1/27/2025
3.0.62 173 1/27/2025
3.0.57 163 1/27/2025
3.0.52 168 1/20/2025
3.0.49 171 1/20/2025
3.0.46 164 1/20/2025
3.0.41 165 1/20/2025
3.0.32 166 1/20/2025
3.0.21 160 1/13/2025
3.0.18 159 1/13/2025
3.0.15 149 1/13/2025
3.0.9 139 1/13/2025
2.4.358 154 1/13/2025
2.4.330 192 1/6/2025
2.4.325 171 1/6/2025
2.4.316 167 1/6/2025
2.4.310 180 12/30/2024
2.4.303 174 12/30/2024
2.4.298 185 12/27/2024
2.4.278 158 12/24/2024
2.4.275 167 12/24/2024
2.4.270 169 12/23/2024
2.4.263 182 12/16/2024
2.4.260 175 12/16/2024
2.4.93 174 12/9/2024
2.4.90 181 12/9/2024
2.4.87 177 12/9/2024
2.4.80 150 12/2/2024
2.4.77 160 12/2/2024
2.4.74 159 12/2/2024
2.4.69 160 12/2/2024
2.4.60 182 11/25/2024
2.4.57 185 11/25/2024
2.4.52 161 11/25/2024
2.4.36 173 11/18/2024
2.4.29 165 11/18/2024
2.4.15 182 11/13/2024
2.4.12 159 11/13/2024
2.4.7 165 11/13/2024
2.4.4 172 11/13/2024
2.3.1685 186 11/12/2024
2.3.1682 159 11/12/2024
2.3.1679 172 11/12/2024
2.3.1672 181 11/12/2024
2.3.1651 152 11/12/2024
2.3.1648 181 11/12/2024
2.3.1641 187 11/12/2024
2.3.1616 193 11/11/2024
2.3.1613 180 11/11/2024
2.3.1478 192 11/4/2024
2.3.1471 172 11/4/2024
2.3.1203 182 10/28/2024
2.3.1200 183 10/28/2024
2.3.1197 170 10/28/2024
2.3.1146 197 10/21/2024
2.3.1143 181 10/20/2024
2.3.1140 184 10/20/2024
2.3.1133 152 10/20/2024
2.3.1129 196 10/19/2024
2.3.1125 206 10/18/2024
2.3.1122 182 10/18/2024
2.3.1117 172 10/18/2024
2.3.1113 162 10/17/2024
2.3.1109 175 10/17/2024
2.3.1098 176 10/14/2024
2.3.1095 165 10/14/2024
2.3.1090 172 10/12/2024
2.3.1087 191 10/12/2024
2.3.1082 165 10/12/2024
2.3.1075 162 10/12/2024
2.3.1060 175 10/3/2024
2.3.1057 173 10/3/2024
2.3.1054 166 10/3/2024
2.3.1051 172 10/3/2024
2.3.1041 184 9/23/2024
2.3.1038 167 9/23/2024
2.3.1029 186 9/16/2024
2.3.1026 195 9/16/2024
2.3.1021 171 9/9/2024
2.3.1018 177 9/9/2024
2.3.1013 164 9/9/2024
2.3.1006 203 9/2/2024
2.3.1003 175 8/28/2024
2.3.998 168 8/28/2024
2.3.993 193 8/27/2024
2.3.981 175 8/27/2024
2.3.976 180 8/27/2024
2.3.966 163 8/27/2024
2.3.959 194 8/26/2024
2.3.949 167 8/26/2024
2.3.937 217 8/24/2024
2.3.933 184 8/19/2024
2.3.930 200 8/12/2024
2.3.927 148 8/5/2024
2.3.924 181 7/29/2024
2.3.921 164 7/22/2024
2.3.915 157 7/17/2024
2.3.912 166 7/17/2024
2.3.902 167 7/17/2024
2.3.889 159 7/16/2024
2.3.882 178 7/16/2024
2.3.879 163 7/15/2024
2.3.870 152 7/15/2024
2.3.864 170 7/15/2024
2.3.856 150 7/15/2024
2.3.849 177 7/12/2024
2.3.845 183 7/12/2024
2.3.842 169 7/12/2024
2.3.839 185 7/12/2024
2.3.836 124 7/12/2024
2.3.827 175 7/8/2024
2.3.824 175 7/1/2024
2.3.821 177 6/24/2024
2.3.818 201 6/17/2024
2.3.815 173 6/10/2024
2.3.812 186 6/3/2024
2.3.809 191 5/27/2024
2.3.806 181 5/27/2024
2.3.801 173 5/27/2024
2.3.794 189 5/27/2024
2.3.785 187 5/20/2024
2.3.782 200 5/19/2024
2.3.774 215 5/6/2024
2.3.771 195 4/29/2024
2.3.768 176 4/29/2024
2.3.763 211 4/29/2024
2.3.756 203 4/29/2024
2.3.747 179 4/22/2024
2.3.744 202 4/22/2024
2.3.739 195 4/22/2024
2.3.732 197 4/15/2024
2.3.729 185 4/15/2024
2.3.724 191 4/15/2024
2.3.717 216 4/8/2024
2.3.714 201 4/8/2024
2.3.709 177 4/1/2024
2.3.706 204 3/27/2024
2.3.703 194 3/25/2024
2.3.700 214 3/18/2024
2.3.697 215 3/18/2024
2.3.692 191 3/18/2024
2.3.685 201 3/11/2024
2.3.682 194 3/4/2024
2.3.679 198 2/27/2024
2.3.676 206 2/27/2024
2.3.665 198 2/26/2024
2.3.660 210 2/19/2024
2.3.657 197 2/19/2024
2.3.652 201 2/19/2024
2.3.645 202 2/14/2024
2.3.642 181 2/14/2024
2.3.636 176 2/12/2024
2.3.633 190 2/5/2024
2.3.630 191 1/30/2024
2.3.627 191 1/30/2024
2.3.622 200 1/30/2024
2.3.619 184 1/30/2024
2.3.616 186 1/30/2024
2.3.599 167 1/29/2024
2.3.596 177 1/29/2024
2.3.588 196 1/22/2024
2.3.583 189 1/22/2024
2.3.578 180 1/22/2024
2.3.571 191 1/16/2024
2.3.568 177 1/16/2024
2.3.563 205 1/15/2024
2.3.556 200 1/8/2024
2.3.553 210 1/1/2024
2.3.550 219 12/25/2023
2.3.547 210 12/25/2023
2.3.542 214 12/25/2023
2.3.535 213 12/18/2023
2.3.530 182 12/18/2023
2.3.518 238 12/14/2023
2.3.511 218 12/11/2023
2.3.508 239 12/11/2023
2.3.503 218 12/11/2023
2.3.487 223 12/11/2023
2.3.476 216 12/11/2023
2.3.473 194 12/8/2023
2.3.469 203 12/4/2023
2.3.466 206 11/29/2023
2.3.461 197 11/28/2023
2.3.455 166 11/27/2023
2.3.452 168 11/27/2023
2.3.447 164 11/21/2023
2.3.444 191 11/21/2023
2.3.439 184 11/20/2023
2.3.432 205 11/20/2023
2.3.423 183 11/20/2023
2.3.412 1,591 11/14/2023
2.3.407 179 11/14/2023
2.3.399 159 11/13/2023
2.3.392 208 11/9/2023
2.3.387 180 11/6/2023
2.3.384 158 11/6/2023
2.3.379 229 10/30/2023
2.3.376 209 10/30/2023
2.3.373 192 10/30/2023
2.3.368 204 10/23/2023
2.3.365 217 10/23/2023
2.3.360 223 10/17/2023
2.3.357 218 10/16/2023
2.3.352 201 10/16/2023
2.3.345 204 10/16/2023
2.3.336 235 10/9/2023
2.3.333 216 10/2/2023
2.3.330 206 9/25/2023
2.3.327 205 9/23/2023
2.3.324 210 9/19/2023
2.3.320 188 9/18/2023
2.3.313 247 9/12/2023
2.3.310 236 9/12/2023
2.3.305 306 9/4/2023
2.3.302 335 8/28/2023
2.3.299 264 8/24/2023
2.3.296 395 8/14/2023
2.3.293 269 8/14/2023
2.3.288 325 8/8/2023
2.3.282 300 8/1/2023
2.3.277 266 7/31/2023
2.3.274 230 7/26/2023
2.3.272 266 7/25/2023
2.3.268 271 7/25/2023
2.3.264 399 7/24/2023
2.3.260 274 7/17/2023
2.3.257 255 7/17/2023
2.3.246 338 7/11/2023
2.3.243 259 7/11/2023
2.3.238 258 7/10/2023
2.3.231 351 7/3/2023
2.3.228 278 7/3/2023
2.3.223 256 7/1/2023
2.3.218 336 6/26/2023
2.3.215 353 6/19/2023
2.3.210 282 6/19/2023
2.3.195 281 6/19/2023
2.3.190 402 6/15/2023
2.3.187 273 6/15/2023
2.3.182 360 6/5/2023
2.3.179 274 6/5/2023
2.3.174 386 5/29/2023
2.3.171 291 5/22/2023
2.3.168 278 5/22/2023
2.3.163 269 5/15/2023
2.3.160 350 5/8/2023
2.3.157 289 5/8/2023
2.3.154 469 5/4/2023
2.3.151 303 5/3/2023
2.3.144 514 4/10/2023
2.3.141 353 4/8/2023
2.3.131 327 4/4/2023
2.3.126 418 4/3/2023
2.3.123 342 4/3/2023
2.3.117 335 4/3/2023
2.3.114 436 3/27/2023
2.3.111 361 3/26/2023
2.3.108 403 3/21/2023
2.3.105 357 3/21/2023
2.3.100 485 3/6/2023
2.3.97 389 3/4/2023
2.3.94 377 3/3/2023
2.3.60 388 2/28/2023
2.3.57 415 1/30/2023
2.3.54 629 1/23/2023
2.3.51 411 1/23/2023
2.3.48 423 1/23/2023
2.3.45 412 1/17/2023
2.3.44 612 1/16/2023
2.3.41 458 1/15/2023
2.3.38 429 1/15/2023
2.3.33 446 1/15/2023
2.3.25 395 1/15/2023
2.3.6 420 1/15/2023
2.3.4 421 1/15/2023
2.2.127 425 1/15/2023
2.2.120 447 1/15/2023
2.2.110 457 1/15/2023
2.2.107 442 1/15/2023
2.2.102 430 1/15/2023
2.2.95 431 1/15/2023
2.2.84 429 1/15/2023
2.2.73 443 1/15/2023
2.2.72 438 1/10/2023
2.2.66 449 12/14/2022
2.2.60 575 9/7/2022
2.2.55 559 9/7/2022
2.2.50 543 9/7/2022
2.2.45 538 9/7/2022
2.2.36 550 11/3/2021
2.2.28 563 9/27/2021
2.2.15 7,190 9/21/2020
2.1.47 675 4/24/2020
2.1.39 666 4/18/2020
2.1.31 688 4/18/2020
2.1.28 667 4/18/2020
2.1.27 676 4/7/2020
2.1.21 678 3/30/2020
2.1.15 811 3/29/2020
2.1.12 746 3/29/2020
1.0.14 806 12/30/2019
1.0.13 789 12/30/2019
1.0.8 746 9/22/2019

Chore