An open API service indexing awesome lists of open source software.

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

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",
},
},
}
);
```