Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

payg

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

payg

  • 0.1.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

For communicating with the Payg API, use this basic Ruby gem. This is primarily intended for those who want to connect with the Payg API programatically.

Installation

Add this line to your application's Gemfile:

gem 'payg'

And then execute:

$ bundle

Or install it yourself as:

$ gem install payg

Requirements

Ruby 2.6.8 or later

Usage

Remember to require 'payg' before anything else.

Next, you need to initialize your AuthenticationKey, AuthenticationToken and MerchantKeyID using the following:

Payg.init('AuthenticationKey', 'AuthenticationToken', 'MerchantKeyId')

You can find your API keys at https://payg.in/merchant/login.

If you are using rails, the right place to do this might be config/initializers/payg.rb.

Usage

Create order


payload = { Merchantkeyid: "8792", UniqueRequestId: "035bbf02a1f", RequestDateTime: "06232021", RedirectUrl: "https://payg.in", OrderAmount: "100", OrderAmountData: { AmountTypeDesc: "3", Amount: "2"}, CustomerData: { MobileNo: "8619083450", Email: "demo@gmail.com"} }

Payg::Order.create(payload.to_json)

Order detail


payload = { OrderKeyId: "76719231011M8792Uf3f5b5ee3fe", MerchantKeyId: '8792', PaymentType: '' }

Payg::Order.detail(payload.to_json)

FAQs

Package last updated on 26 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc