Advertisement
yappy

Untitled

May 3rd, 2017
856
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.04 KB | None | 0 0
  1. https://pastebin.com/api/api_post.php/b7202674df9d7f3fddfbde207a51a926*/ "use strict"; var paypal = require('../../'); require('../configure'); var sender_batch_id = Math.random().toString(36).substring(9); var create_payout_json = { "sender_batch_header": { "sender_batch_id": sender_batch_id, "email_subject": "You have a payment" }, "items": [ { "recipient_type": "EMAIL", "amount": { "value": 0.99, "currency": "USD" }, "receiver": "shirt-supplier-one@mail.com", "note": "Thank you.", "sender_item_id": "item_1" }, { "recipient_type": "EMAIL", "amount": { "value":99.90, "currency": "USD" }, "receiver": "shirt-supplier-two@mail.com", "note": "Thank you.", "sender_item_id": "item_2" }, { "recipient_type": "EMAIL", "amount": { "value":92.00, "currency": "USD" }, "receiver": "shirt-supplier-three@mail.com", "note": "Thank you.", "sender_item_id": "item_3" } ] }; paypal.payout.create(create_payout_json, function (error, payout) { if (error) { console.log(error.response); throw error; } else { console.log("Create Payout Response"); console.log(payout); } });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement