VOOZH about

URL: https://www.nuget.org/packages/IkasAdminApiLibrary/

⇱ NuGet Gallery | IkasAdminApiLibrary 1.0.9




IkasAdminApiLibrary 1.0.9

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package IkasAdminApiLibrary --version 1.0.9
 
 
NuGet\Install-Package IkasAdminApiLibrary -Version 1.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="IkasAdminApiLibrary" Version="1.0.9" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IkasAdminApiLibrary" Version="1.0.9" />
 
Directory.Packages.props
<PackageReference Include="IkasAdminApiLibrary" />
 
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 IkasAdminApiLibrary --version 1.0.9
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: IkasAdminApiLibrary, 1.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 IkasAdminApiLibrary@1.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=IkasAdminApiLibrary&version=1.0.9
 
Install as a Cake Addin
#tool nuget:?package=IkasAdminApiLibrary&version=1.0.9
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

IkasAdminApiLibrary

👁 NuGet

.NET ile Ikas Admin API üzerinden ürünlerinizi listeleyip yönetmenizi sağlayan basit bir istemci kütüphanedir.

Kurulum

dotnet add package IkasAdminApiLibrary

Ürün Listeleme Örneği

var config = new Config([ClientId],[ClientSecret],[StoreName]);
var ikasClient = new IkasClient(config);

async Task<Pagination<Product>> GetProducts()
{
 var result = await ikasClient.ProductManager.List(new ListProductInput()
 {
 Name = StringFilterInput.Equal("ÜRÜN ADI"),
 Pagination = new PaginationInput(1, 1)
 });

 if (result.IsFail())
 throw new Exception($"Error fetching products: {result.GetMessage()}({result.GetCode()})");


 return result.Data;
}


var products = await GetProducts();
foreach (var product in products.Items)
{
 Console.WriteLine($"Product ID: {product.Id}, Name: {product.Name}");
}

V1 Akisinda Varyant Ekleme

Mevcut v1 endpoint'leri aynen kullanilmaya devam eder. Sadece mevcut urune varyant ekleme islemi icin AddVariant metodu Ikas'in v2 addVariantToProduct mutation'ini cagirir.

var result = await ikasClient.ProductManager.AddVariant(new AddVariantToProductInput
{
 ProductId = "product-id",
 Variant = new CreateProductVariantInput
 {
 IsActive = true,
 Sku = "SKU-SIYAH",
 Prices =
 [
 new ProductPriceInput(100)
 ],
 VariantValues =
 [
 new CreateVariantValueInput
 {
 VariantTypeName = "Renk",
 VariantValueName = "Siyah"
 }
 ]
 }
});

if (result.IsFail())
 throw new Exception($"{result.GetMessage()} ({result.GetCode()})");

Console.WriteLine($"Updated Product ID: {result.Data.Id}");
Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows 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
2.0.0-beta.1 74 6/7/2026
1.0.9 96 6/8/2026
1.0.8 125 1/21/2026
1.0.7 210 12/13/2025
1.0.6 326 11/11/2025
1.0.5 223 10/2/2025
1.0.4 217 9/9/2025
1.0.3 222 9/9/2025
1.0.2 299 8/6/2025
1.0.1 216 7/13/2025
1.0.0 223 7/13/2025