Skip to main content

A Nmi library for python

Project description

NMI Gateway

This is a nmi handy package to interact with the nmi gateway endpoints, you can find the original documentation here: https://secure.networkmerchants.com/gw/merchants/resources/integration/integration_portal.php#cv_variables

This package was build with the unique intention to make the integration with the gateway easy.

Examples

Customer Vault methods

Create customer vault

from nmigate.lib.customer_vault import CustomerVault

secret_key = 'your secret key'
org = 'your org'
token = 'your test token here' # test token "00000000-000000-000000-000000000000"

customer_vault = CustomerVault(secret_key, org)
        result = customer_vault.create_customer_vault({
            "id": "",
            "token": token,
            "billing_id": "",
            "billing_info": {
                "first_name": "1",
                "last_name": "1",
                "address1": "1",
                "city": "1",
                "state": "1",
                "zip": "1",
                "country": "1",
                "phone": "1",
                "email": "1"
            }
        })

Get billing info by transaction id

from nmigate.lib.customer_vault import CustomerVault

secret_key = 'your secret key'
org = 'your org'
transaction_id = 'transaction id '

customer_vault = CustomerVault(secret_key, org)
result = customer_vault.get_billing_info_by_transaction_id(transaction_id)

Plans

Get all plans

from nmigate.src.nmigate.lib.plans import Plans

secret_key = 'your secret key'
org = 'your org'

plansObj = Plans(secret_key, org)
response = plansObj.get_all_plans()
plans = response['nm_response']['plan']

Get plan

from nmigate.src.nmigate.lib.plans import Plans

secret_key = 'your secret key'
org = 'your org'
plan_id = 'your plan id'

plans = Plans(secret_key, org)
response = plans.get_plan(plan_id)

Add plan using frequency configuration

from nmigate.src.nmigate.lib.plans import Plans

secret_key = 'your secret key'
org = 'your org'

plans = Plans(secret_key, org)
response = plans.add_plan_by_day_frequency({
    'plan_amount': '10.00',
    'plan_name': 'test',
    'plan_id': 'test',
    'day_frequency': '1',
    'plan_payments': '0'
})

Edit day frequency plan

from nmigate.src.nmigate.lib.plans import Plans

secret_key = 'your secret key'
org = 'your org'

plans = Plans(secret_key, org)
response = plans.edit_plan_by_day_frequency({
    "recurring": "edit_plan",
    'plan_amount': '10.00',
    'plan_name': 'test',
    'plan_id': 'test',
    'day_frequency': '2',
    'plan_payments': '0'
})

Add plan using month config

from nmigate.src.nmigate.lib.plans import Plans

secret_key = 'your secret key'
org = 'your org'

plans = Plans(secret_key, org)
response = plans.add_plan_by_month_config({
    'plan_amount': '10.00',
    'plan_name': 'test',
    'plan_id': 'test1',
    'month_frequency': '1',
    "day_of_month": '1',
    'plan_payments': '0'
})

Edit plan using month config

from nmigate.src.nmigate.lib.plans import Plans

secret_key = 'your secret key'
org = 'your org'

plans = Plans(secret_key, org)
response = plans.edit_plan_by_month_config({
    'plan_amount': '10.00',
    'plan_name': 'test',
    'plan_id': 'test1',
    'month_frequency': '1',
    "day_of_month": '10',
    'plan_payments': '0'
})

Subscriptions

Get Subscriptions

from nmigate.lib.customer_vault import CustomerVault

secret_key = 'your secret key'
org = 'your org'
subscription_id='customer vault id'

subscriptions = Subscriptions(secret_key, org)
info = subscriptions.get_info(subscription_id)
print(result)

Subscription + sale, using plan_id and customer vault

If total_amount = 0 then its a simple subscription, if total_amount > 0 then its a subscription with sale

from nmigate.lib.customer_vault import CustomerVault

secret_key = 'your secret key'
org = 'your org'
customer_vault_id='customer vault id'

subscriptions = Subscriptions(secret_key, org)
result = subscriptions.custom_sale_using_vault(plan_id = customer_vault_id, customer_vault_id=customer_vault_id, create_customer_vault=False)
print(result)

Custome Subscription + sale, using vault number and month frequency configuration

from nmigate.lib.subscriptions import Subscriptions

secret_key = 'your secret key'
org = 'your org'

subscriptions = Subscriptions(secret_key, org)
result = subscriptions.custom_sale_using_vault_month_frequency(request_sub = {
    "user_id": "1",
    "total_amount": "11",
    "custom_subscription_info": {
        "plan_payments": "13",
        "plan_amount": "12",
        "month_frequency": "1",
        "day_of_month": "1"
    }
})
print(result)

Custome Subscription + sale, using vault number and day frequency configuration

from nmigate.lib.subscriptions import Subscriptions

secret_key = 'your secret key'
org = 'your org'

subscriptions = Subscriptions(secret_key, org)
result = subscriptions.custom_with_sale_and_vault_day_frequency(request_sub = {
    "user_id": "1",
    "total_amount": "14",
    "custom_subscription_info": {
        "plan_payments": "15",
        "plan_amount": "6",
        "day_frequency": "1"
    }
})
print(result)

Delete subscription

from nmigate.lib.subscriptions import Subscriptions

secret_key = 'your secret key'
org = 'your org'
subscription_id = 'your subscription_id'

subscriptions = Subscriptions(secret_key, org)
info = subscriptions.delete_subscription(subscription_id)

Pause/resume Subscription

from nmigate.lib.subscriptions import Subscriptions

secret_key = 'your secret key'
org = 'your org'
subscription_id = 'your subscription_id'
pause=True # True to pause, False to unpause

transactions = Subscriptions(secret_key, org)
result = transactions.pause_subscription(subscription_id, pause)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nmigate-0.0.8.tar.gz (8.5 kB view details)

Uploaded Source

Built Distribution

nmigate-0.0.8-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file nmigate-0.0.8.tar.gz.

File metadata

  • Download URL: nmigate-0.0.8.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for nmigate-0.0.8.tar.gz
Algorithm Hash digest
SHA256 d942a53614fd700cc43a49b4396b07ad7a1c8aff3182463a3f4302302a4627c8
MD5 7d66f6b7f7660d14c8507101336c59bc
BLAKE2b-256 bd80df4b71ed0718e466a3192346915b8d8a1804dc4d59c6f6dd1d317dc4f368

See more details on using hashes here.

File details

Details for the file nmigate-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: nmigate-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for nmigate-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 98f93161474a14f85954112ebd8ccc9cecd6f0cc77bc52a9ccfd5b7a98b2b664
MD5 6ed45ee7c2b7d7d6a7c23e2e32221721
BLAKE2b-256 bc25eef2e35b7660d8ecb202ec89844cfa728dfb4b6876ab3d436bba639d9fa6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page