ZainCash.Net 5.0.3

dotnet add package ZainCash.Net --version 5.0.3
NuGet\Install-Package ZainCash.Net -Version 5.0.3
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="ZainCash.Net" Version="5.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZainCash.Net --version 5.0.3
#r "nuget: ZainCash.Net, 5.0.3"
#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.
// Install ZainCash.Net as a Cake Addin
#addin nuget:?package=ZainCash.Net&version=5.0.3

// Install ZainCash.Net as a Cake Tool
#tool nuget:?package=ZainCash.Net&version=5.0.3

ZainCash.Net

Description:

ZainCash.Net is a simple and easy-to-use library for integrating ZainCash payment gateway with your .NET applications. It provides a simple and easy-to-use API for creating a new transaction, generating a token, decoding the token, and getting the transaction details.

Install:

using CLI:

dotnet add package ZainCash.Net --version 5.0.3

using Package Manager:

Install-Package ZainCash.Net -Version 5.0.3

Environment:

  • Production (ZainCash API)
  • Development (ZainCash Test API)

Tested on:

  • .NET 8
  • .NET 7
  • .NET 6

Usage :

Register the service and the config DI (Dependency Injection):
// [+] Register zain cash service using DI;
builder.Services.AddZainCashService();

// [+] Register zain cash service using DI with environment type.
builder.Services.AddZainCashService();

// 1- You could specify the config directly using :
builder.Services.AddZainCashConfig(new ZainCashAPIConfig
{
    Language = "en",
    ServiceType = "book_service",
    Msisdn = "9647835077893",
    MerchantId = "5ffacf6612b5777c6d44266f",
    RedirectUrl = "https://www.your-website.com/",
    Secret = "$2y$10$hBbAZo2GfSSvyqAyV2SaqOfYewgYpfR1O19gIh4SqyGWdmySZYPuS",
    IsDevelopment = true  // default false
});

// 2- WebApplicationBuilder extension needs only the section name in your appsettings.json.
builder.AddZainCashConfig("ZainCash"); // check ZainCashAPIConfig file

// 3- Or, you could specify the section name from service collection.
builder.Services.AddZainCashConfig("ZainCash"); 
// OR
builder.Services.AddZainCashConfig("ZainCash", configuration);

// - Now you can access zain cash config everywhere using DI.
var config = builder.Services.BuildServiceProvider().GetRequiredService<ZainCashAPIConfig>();

// - You can now access the service using the IZainCashService interface
var service = builder.Services.BuildServiceProvider().GetRequiredService<IZainCashService>();

// - To create a new transaction, you need to call the InitAsync method. [BE]
var initRequest = new InitTransactionRequest
{
    Amount = 1500,       // at least 1000 IQD
    OrderId = "123456",
};

InitTransactionResponse response = await service.InitTransactionAsync(initRequest, CancellationToken.None);
console.WriteLine(response.Id); // Transaction Id
console.WriteLine(response.Amount); // Transaction amount
console.WriteLine(response.OrderId); // Transaction order id
console.WriteLine(response.ServiceType); // Transaction service type
console.WriteLine(response.ReferenceNumber); // Transaction reference number
console.WriteLine(response.CurrencyConversion); // Transaction currency conversion
Token
// - To generate the token without creating a new transaction.
string token = service.GenerateToken(initRequest);

// [+] The next steps will be on the client side (FrontEnd)
// - User will pay using the URL returned from the previous step. [FE]
// - After the user pays, the user will be redirected to the RedirectUrl. [FE]
// - The RedirectUrl will contain the token in the query string. [FE] [BE]
// - Will be something like: https://www.your-website.com/?token=THE_TOKEN


// [+] Back to the server side (BackEnd)
// - To decode the token and get the transaction details like status or id.
TokenResult tokenResult = service.DecodeToken("THE_TOKEN");

// - You can check the transaction status. e.g.
if (tokenResult.Status == PaymentStatus.Success)
{
    // - The transaction is successful.
}
if (tokenResult.Status == PaymentStatus.Failed)
{
    // - The transaction is failed.
}
if (tokenResult.Status == PaymentStatus.Pending)
{
    // - The transaction is pending.
}
if (tokenResult.Status == PaymentStatus.Completed)
{
    // - The transaction is completed.
}

// - TokenResult contains more details as well.
Console.WriteLine(tokenResult.Id); // Transaction Id
Console.WriteLine(tokenResult.Msg); // Response message
Console.WriteLine(tokenResult.Status); // Transaction status
Console.WriteLine(tokenResult.OrderId); // Order Id
Get transaction details by the transaction id
// - To get the transaction details by the transaction id.
TransactionResponse transactionDetails = await service.GetTransactionAsync(tokenResult.Id, CancellationToken.None);

// - TransactionDetailsResponse contains more details as well.
Console.WriteLine(transactionDetails.Id); // Transaction id
Console.WriteLine(transactionDetails.Type); // Transaction type
Console.WriteLine(transactionDetails.Amount); // Transaction amount
Console.WriteLine(transactionDetails.Source); // Transaction source
Console.WriteLine(transactionDetails.Credit); // Transaction credit
Console.WriteLine(transactionDetails.Status); // Transaction status
Console.WriteLine(transactionDetails.OrderId); // Transaction order id
Console.WriteLine(transactionDetails.Reversed); // Transaction reversed
Console.WriteLine(transactionDetails.CreatedAt); // Transaction created at
Console.WriteLine(transactionDetails.UpdatedAt); // Transaction updated at
Console.WriteLine(transactionDetails.RedirectUrl); // Transaction redirect url
Console.WriteLine(transactionDetails.ServiceType); // Transaction service type
Console.WriteLine(transactionDetails.ReferenceNumber); // Transaction reference number
Console.WriteLine(transactionDetails.CurrencyConversion); // Transaction currency conversion``
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 was computed.  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. 
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
5.0.3 102 4/4/2024
5.0.2 91 4/4/2024
5.0.1 86 4/3/2024
5.0.0 82 4/3/2024
4.0.1 90 4/3/2024
4.0.0 88 3/28/2024
3.0.0 100 2/11/2024
2.0.0 93 2/10/2024
1.0.4 87 2/10/2024
1.0.3 75 2/10/2024
1.0.2 90 2/10/2024
1.0.1 97 2/9/2024
1.0.0 83 2/8/2024