Get product payment methods
GET
https://api.bitrush.nl/v1/products/id/payment-methods
Retrieve a list of payment methods for a specific product.
Response
- id String
- The identifier uniquely referring to this payment method.
- name String
- The payment method name.
- amount Object
-
The minimum and maximum allowed payment amount will differ between payment methods.
- minimum Decimal
- The minimum payment amount required to use this payment method.
- maximum Decimal
- The maximum payment amount allowed when using this payment method.
Example
curl https://api.bitrush.nl/v1/products/EUR-XBT/payment-methods
200
application/json; charset=utf-8
[ { "id": "ideal", "name": "iDeal", "amount": { "minimum": 5, "maximum": 10000 } } ]