Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. var widget = new cp.CloudPayments();
  2. widget.charge({ // options
  3. publicId: '',
  4. description: 'Оплата',
  5. amount: '', //сумма**
  6. currency: 'KZT',
  7. invoiceId: '', //номер заказа
  8. accountId: '', //плательщик
  9. },
  10. function (options) { // success
  11. //действие при успешном платеже
  12. },
  13. function (reason, options) { // fail
  14. //действие при неуспешном платеже
  15. });
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement