https://github.com/longern/manual-payment
Manual payment method with customizable instruction
https://github.com/longern/manual-payment
Last synced: about 1 year ago
JSON representation
Manual payment method with customizable instruction
- Host: GitHub
- URL: https://github.com/longern/manual-payment
- Owner: longern
- License: mit
- Created: 2022-07-19T07:30:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-19T09:15:30.000Z (almost 4 years ago)
- Last Synced: 2025-01-28T00:28:35.224Z (over 1 year ago)
- Language: HTML
- Homepage: https://manual-payment.pages.dev/
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Manual Payment
Web API manual payment method with customizable instructions.
No actual payments happen. It just redirects to your page which shows payment instructions.
## Example
```js
const paymentRequest = new PaymentRequest(
[{
supportedMethods: "https://manual-payment.pages.dev/",
data: { redirect_url: "https://google.com" },
}],
{
total: {
label: "Total",
amount: {
currency: "USD",
value: "1.00",
},
},
}
);
```