EasyKeys.Veeqo.Abstractions
1.0.1
See the version list below for details.
dotnet add package EasyKeys.Veeqo.Abstractions --version 1.0.1
NuGet\Install-Package EasyKeys.Veeqo.Abstractions -Version 1.0.1
<PackageReference Include="EasyKeys.Veeqo.Abstractions" Version="1.0.1" />
paket add EasyKeys.Veeqo.Abstractions --version 1.0.1
#r "nuget: EasyKeys.Veeqo.Abstractions, 1.0.1"
// Install EasyKeys.Veeqo.Abstractions as a Cake Addin #addin nuget:?package=EasyKeys.Veeqo.Abstractions&version=1.0.1 // Install EasyKeys.Veeqo.Abstractions as a Cake Tool #tool nuget:?package=EasyKeys.Veeqo.Abstractions&version=1.0.1
Veeqo API Wrapper
Overview
This repository contains a .NET wrapper for the Veeqo API. The wrapper simplifies interaction with Veeqo's various endpoints, allowing developers to easily integrate Veeqo functionalities into their applications.
Features
- Simplified API interaction with Veeqo.
- Support for major Veeqo endpoints (Products, Orders, Customers, etc.).
- Error handling and response validation.
- Customizable to fit different use cases.
Installation
To install the Veeqo API Wrapper, you can add the package reference to your project:
<PackageReference Include="EasyKeys.Veeqo" Version="1.0.0" />
Usage
Here's a quick example to get you started:
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using EasyKeys.Veeqo.Orders;
using EasyKeys.Veeqo.Orders.Models.Parameters;
// Configure your services
var services = new ServiceCollection();
var dic = new Dictionary<string, string>
{
{ "VeeqoClientOptions:BaseUrl", "https://private-anon-4c0cd8afa3-veeqo.apiary-proxy.com/" },
{ "VeeqoClientOptions:ApiKey" , "your-api-key" },
};
var configBuilder = new ConfigurationBuilder().AddInMemoryCollection(dic);
var config = configBuilder.Build();
services.AddSingleton<IConfiguration>(config);
services.AddVeeqoOptions();
Authentication
To use the Veeqo API, you need to obtain an API key from your Veeqo account. Once you have the key, configure the VeeqoClientOptions
with your API key as shown in the example above.
Endpoints
The wrapper supports the following Veeqo endpoints:
Products
GetProductsAsync()
: Retrieve a list of products.GetProductAsync(productId)
: Retrieve a single product by its ID.CreateProductAsync(data)
: Create a new product.UpdateProductAsync(productId, data)
: Update an existing product.DeleteProductAsync(productId)
: Delete a product by its ID.
Orders
ListOrdersAsync(parameters)
: Retrieve a list of orders.GetOrderAsync(orderId)
: Retrieve a single order by its ID.CreateVeeqoOrderAsync(order)
: Create a new order.UpdateVeeqoOrderAsync(orderId, order)
: Update an existing order.CreateOrderNotesAsync(orderId, text)
: Create a note for an order.
Models
Request Models
Request models are used to structure the data sent to the Veeqo API when creating or updating resources. For example, RequestOrder
is used when creating or updating an order. These models are located in the Models/Request
folder.
Response Models
Response models represent the structure of the data returned by the Veeqo API. For example, Order
is used to represent the details of an order returned by the API. These models are located in the Models/Response
folder.
Parameters Models
Parameter models are used to filter and paginate the results when retrieving data from the API. For example, GetOrdersParameters
allows you to specify various criteria such as date range, status, and pagination options to refine the results returned by the API. These models are located in the Models/Parameters
folder.
Contributing
Contributions are welcome! Please fork this repository and submit a pull request for any enhancements or bug fixes.
Steps to Contribute
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add some feature'
). - Push to the branch (
git push origin feature-branch
). - Create a new Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contact
If you have any questions or suggestions, please feel free to open an issue or contact us directly.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 8.0.0)
- Microsoft.Extensions.Configuration.FileExtensions (>= 8.0.1)
- Microsoft.Extensions.Configuration.Json (>= 8.0.0)
- Microsoft.Extensions.Configuration.UserSecrets (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Http (>= 8.0.0)
- Microsoft.Extensions.Http.Resilience (>= 8.7.0)
- Microsoft.Extensions.Logging.Console (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.2)
- Polly (>= 8.4.1)
- Polly.Extensions (>= 8.4.1)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on EasyKeys.Veeqo.Abstractions:
Package | Downloads |
---|---|
EasyKeys.Veeqo.Products
DotNetCore Implementation of veeqo products api endpoint |
|
EasyKeys.Veeqo.BulkTagging
DotNetCore Implementation of veeqo bulk tagging api endpoint |
|
EasyKeys.Veeqo.StockEntries
DotNetCore Implementation of veeqo stock entries api endpoint |
|
EasyKeys.Veeqo.Orders
DotNetCore Implementation of veeqo orders api endpoint |
GitHub repositories
This package is not used by any popular GitHub repositories.