Code Monkey home page Code Monkey logo

olorunfemidavis / monapay.net Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 17 KB

The MonaPay.Net API allows developers to integrate monapay wallet system into their .Net applications capable of displaying a webpage for user interactivity. This wallet can easily be funded via User airtime balance or with any credit or debit cards. International cards can also be used.

License: MIT License

C# 100.00%
payment-integration payment mobile mobile-payment airtime-payment

monapay.net's Introduction

Monapay.Net

The MonaPay.Net API allows developers to integrate monapay wallet system into their .Net applications capable of displaying a webpage for user interactivity.
This wallet can easily be funded via User airtime balance or with any credit or debit cards. International cards can also be used.

Visit monapay for Setup.

Prerequisites

This Library require .Net framework 4.6 or higher

Installing

Install this library from Nuget

Author

License

This project is licensed under the MIT License

Upcoming:

  • More precise intellisense
  • More Documentation in this README file

SDK Usage

Add namespaces:

using Monapay.Net;
using Monapay.Net.Models;
using Monapay.Net.Helpers;
using Monapay.Net.Methods;

We suggest you go through the detailed documentation:

Transactions

Transaction Initialization

    /// <summary>
    /// Implements simple InitializePayment with full parameters
    /// </summary>
    private static void InitializePayment()
    {
        var connectionInstance = new MonapayPayment();
        //var PaymentUrl = connectionInstance.GetInitializePaymentUrl(new InitializePaymentRequestModel() { amount = 30000, description = "some text", merchant_id = "merchant_id", product_key = "product_key", redirect_url = "redirect_url", uuid = "uiid", reference_id = "ref_id" });
        var PaymentUrl = connectionInstance.GetInitializePaymentUrl(new InitializePaymentRequestModel() { amount = 30000, description = "some text", merchant_id = "merchant_id", product_key = "product_key", redirect_url = "redirect_url"});
        Console.WriteLine(PaymentUrl);
        System.Diagnostics.Process.Start(PaymentUrl);

        //For Web
        //Response.AddHeader("Access-Control-Allow-Origin", "*");
        // Response.AppendHeader("Access-Control-Allow-Origin", "*");
        //Response.Redirect(PaymentUrl); //Redirects your browser to the secure URL
    }

Transaction Verification

/// <summary>
    /// Payment Verification
    /// </summary>
    private static async void VerifyPayment()
    {
        var connectionInstance = new MonapayPayment("key");
        var response =await connectionInstance.VerifyPayment("ref");
        Console.WriteLine(JsonConvert.SerializeObject(response));
    }

monapay.net's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.