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

paypal-simple

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paypal-simple

A really simple PayPal API module. Too simple for most projects.

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by400%
Maintainers
1
Weekly downloads
 
Created
Source

paypal-simple

A really simple PayPal API module. Too simple for most projects.

Installation

npm install paypal-simple

Usage

const PayPalSimple = require('paypal-simple');
const payPalSimple = new PayPalSimple("<Your clientID>", "<Your secret>", true);
const order = payPalSimple.createOrder(options);

payPalSimple.createOrder(options)

options
options.type === "custom"
  • options.body = - Object of custom body
options.type === "min"
  • options.return_url - return url if the user authorizes the payment
  • option.cancel_url - return url if the user cancels the transaction
  • option.amount - float value in USD to charge
  • option.custom_id - (optional) - custom id for tracking type of payment
options.type === "extensive"
  • options.return_url - return url if the user authorizes the payment
  • option.cancel_url - return url if the user cancels the transaction
  • option.brand_name - brand name to show in transaction
  • option.custom_id - a custom id for the transaction
  • option.amount - float value in USD to charge

order

order.create()

creates the order, call this multiple times to duplicate an order

returns the approve url, give this to the user to approve payment

implicit when calling PayPalSimple.createOrder()

order.id

accessible after order.create() is called. ID of the order.

order.amount

amount the order is for

order.capture()

capture an order

order.refund(amount)

refund an order

  • amount - amount to refund
order.responses
  • create - response from order.create()
  • capture - response from order.capture()
  • refund - response from order.refund()

Example

const PayPalSimple = require('paypal-simple');

const payPalSimple = new PayPalSimple("<Your clientID>", "<Your secret>", true);

const order = await payPalSimple.createOrder({
        type: "min",
        amount: "5.00",
        return_url: "http://example.com/return",
        cancel_url: "http://example.com/cancel",
});

const approve_url = order.approve_url;

// somehow give the user the approve_url and wait for user to comeback

order.capture().then(async _ => {
        console.log("We got the cash! Refunding...");
}).catch(e => {
        console.log("They didn't pay or an error occurred.")
});

FAQs

Package last updated on 12 Nov 2019

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