Use these operations to access Storefront payment instruments.
Storefront operations interact directly with the customer, and provide the customer with access to their own data.
To use Storefront operations, the customer must be issued a JWT with limited permissions. For more information, see Create a session with username and password and Exchange an authentication token. Storefront operations are intended to be used directly from an untrusted browser.
Retrieves a list of payment instruments.
Security
CustomerJWT
Criteria for filtering collection items. This field requires a special format. Use , to specify multiple allowed values. Use ; to specify multiple fields.
For more information, see Search filters.
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/storefront/payment-instruments
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/storefront/payment-instruments
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/storefront/payment-instruments
curl -i -X GET \
'https://www.rebilly.com/_mock/catalog/all/storefront/payment-instruments?filter=string&sort=string&limit=1000&offset=1000&q=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
- Payment card
- Bank account
- PayPal account
- Khelocard card
- Alternative instrument
[ { "id": "4f6cf35x-2c4y-483z-a0a9-158621f77a21", "method": "payment-card", "status": "active", "fingerprint": "string", "bin": "string", "last4": "string", "expYear": 0, "expMonth": 0, "digitalWallet": "Apple Pay", "brand": "Visa", "bankCountry": "string", "bankName": "string", "isPayoutable": true, "billingAddress": { … }, "useAsBackup": false, "billingPortalUrl": "string", "createdTime": "2019-08-24T14:15:22Z", "updatedTime": "2019-08-24T14:15:22Z", "lastPaymentTime": "2019-08-24T14:15:22Z", "customFields": { … }, "token": "string", "_links": [ … ] } ]