.NET SDK
1. Using Visual Studio
1.
2.
3.
4.
1.
2.
Install-Package SmatPaySDK
2. Using .NET CLI
1.
2.
cd path\to\your\project
3.
dotnet add package SmatPaySDK
3. Editing the Project File Manually
1.
2.
3.
4.
dotnet restore
4. Verifying Installation
You can also check your .csproj file to ensure the package reference was added.
5. Using the Package
using SmatPaySDK.models;
using SmatPaySDK.services;
using SmatPaySDK.services;
Private ReadOnly baseUrl As String = SmatPayConstants.STAGING_ENVIRONMENT
Private authKey As String = ""Sub Main(args As String())
____MainAsync().GetAwaiter().GetResult()
End Sub Private Async Function MainAsync() As Task
____' Initialize the service using a real base URL and authentication key
____Dim authSandBoxService As New AuthSandBoxAPIService(baseUrl)
____Dim merchant As New Merchant() With {
________.MerchantId = "311722504951049",
________.MerchantKey = "959d936d-c79a-4711-9528-2d0dc4399142",
________.MerchantApiKey = "V8S5M2C3L0nYPz8ZDVRhq"
____} ____Dim authObject As MerchantResponse = Await authSandBoxService.GetTokenAsync(merchant)
____authKey = authObject.Token ____Await CheckInnBucksStatus()
____Await CheckEcocashStatus()
____Await CheckZimSwitchStatus()
End Function Private Async Function CheckInnBucksStatus() As Task
____' Create a request object
____Dim statusRequest As New PayInnbucksStatusRequest() With {
________.TransactionReference = "71454554123134",
________.TransactionCode = "701878860",
________.WalletName = "Innbucks"
____} ____Dim paymentStatusService As New DirectStatusSandBoxAPIService(baseUrl, authKey) ____Try
________' Call the SDK method
________Dim paymentStatuses As List(Of PaymentStatusResponse) = Await paymentStatusService.PayInnBucksStatusAsync(statusRequest) ________' Output the results to the console
________Console.WriteLine("Payment Status Response InnBucks:")
________For Each paymentStatus In paymentStatuses
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine()
________Next
____Catch ex As Exception
________' Handle any errors
________Console.WriteLine(
____End Try
End Function Private Async Function CheckEcocashStatus() As Task
____' Create a request object
____Dim statusRequest As New PayEcocashStatusRequest() With {
________.TransactionReference = "INV-000-002",
________.WalletName = "Ecocash"
____} ____Dim paymentStatusService As New DirectStatusSandBoxAPIService(baseUrl, authKey) ____Try
________' Call the SDK method
________Dim paymentStatuses As List(Of PaymentStatusResponse) = Await paymentStatusService.PayEcocashStatusAsync(statusRequest) ________' Output the results to the console
________Console.WriteLine("Payment Status Response Ecocash:")
________For Each paymentStatus In paymentStatuses
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine()
________Next
____Catch ex As Exception
________' Handle any errors
________Console.WriteLine(
____End Try
End Function Private Async Function CheckZimSwitchStatus() As Task
____' Create a request object
____Dim statusRequest As New PayZimSwitchStatusRequest() With {
________.TransactionReference = "3E71FD08FBA6CDAB6E1DCF890C60ED9B.uat01-vm-tx01",
________.WalletName = "ZimSwitch"
____} ____Dim paymentStatusService As New DirectStatusSandBoxAPIService(baseUrl, authKey) ____Try
________' Call the SDK method
________Dim paymentStatuses As List(Of PaymentStatusResponse) = Await paymentStatusService.PayZimSwitchStatusAsync(statusRequest) ________' Output the results to the console
________Console.WriteLine("Payment Status Response ZimSwitch:")
________For Each paymentStatus In paymentStatuses
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine(
____________Console.WriteLine()
________Next
____Catch ex As Exception
________' Handle any errors
________Console.WriteLine(
____End Try
End Function
Private authKey As String = ""
____MainAsync().GetAwaiter().GetResult()
End Sub
____' Initialize the service using a real base URL and authentication key
____Dim authSandBoxService As New AuthSandBoxAPIService(baseUrl)
____Dim merchant As New Merchant() With {
________.MerchantId = "311722504951049",
________.MerchantKey = "959d936d-c79a-4711-9528-2d0dc4399142",
________.MerchantApiKey = "V8S5M2C3L0nYPz8ZDVRhq"
____}
____authKey = authObject.Token
____Await CheckEcocashStatus()
____Await CheckZimSwitchStatus()
End Function
____' Create a request object
____Dim statusRequest As New PayInnbucksStatusRequest() With {
________.TransactionReference = "71454554123134",
________.TransactionCode = "701878860",
________.WalletName = "Innbucks"
____}
________' Call the SDK method
________Dim paymentStatuses As List(Of PaymentStatusResponse) = Await paymentStatusService.PayInnBucksStatusAsync(statusRequest)
________Console.WriteLine("Payment Status Response InnBucks:")
________For Each paymentStatus In paymentStatuses
____________Console.WriteLine(
$
"Status: {paymentStatus.Status}")____________Console.WriteLine(
$
"Payment Reference: {paymentStatus.PaymentReference}")____________Console.WriteLine(
$
"Payment Method: {paymentStatus.PaymentMethod}")____________Console.WriteLine(
$
"Payment Date: {paymentStatus.PaymentDate}")____________Console.WriteLine()
________Next
____Catch ex As Exception
________' Handle any errors
________Console.WriteLine(
$
"Error: {ex.Message}")____End Try
End Function
____' Create a request object
____Dim statusRequest As New PayEcocashStatusRequest() With {
________.TransactionReference = "INV-000-002",
________.WalletName = "Ecocash"
____}
________' Call the SDK method
________Dim paymentStatuses As List(Of PaymentStatusResponse) = Await paymentStatusService.PayEcocashStatusAsync(statusRequest)
________Console.WriteLine("Payment Status Response Ecocash:")
________For Each paymentStatus In paymentStatuses
____________Console.WriteLine(
$
"Status: {paymentStatus.Status}")____________Console.WriteLine(
$
"Payment Reference: {paymentStatus.PaymentReference}")____________Console.WriteLine(
$
"Payment Method: {paymentStatus.PaymentMethod}")____________Console.WriteLine(
$
"Payment Date: {paymentStatus.PaymentDate}")____________Console.WriteLine()
________Next
____Catch ex As Exception
________' Handle any errors
________Console.WriteLine(
$
"Error: {ex.Message}")____End Try
End Function
____' Create a request object
____Dim statusRequest As New PayZimSwitchStatusRequest() With {
________.TransactionReference = "3E71FD08FBA6CDAB6E1DCF890C60ED9B.uat01-vm-tx01",
________.WalletName = "ZimSwitch"
____}
________' Call the SDK method
________Dim paymentStatuses As List(Of PaymentStatusResponse) = Await paymentStatusService.PayZimSwitchStatusAsync(statusRequest)
________Console.WriteLine("Payment Status Response ZimSwitch:")
________For Each paymentStatus In paymentStatuses
____________Console.WriteLine(
$
"Status: {paymentStatus.Status}")____________Console.WriteLine(
$
"Payment Reference: {paymentStatus.PaymentReference}")____________Console.WriteLine(
$
"Payment Method: {paymentStatus.PaymentMethod}")____________Console.WriteLine(
$
"Payment Date: {paymentStatus.PaymentDate}")____________Console.WriteLine()
________Next
____Catch ex As Exception
________' Handle any errors
________Console.WriteLine(
$
"Error: {ex.Message}")____End Try
End Function
Modified at 2024-10-23 14:52:26