Payment Methods Management
PaySwitcher is designed to facilitate the management of saved payment methods
Last updated
PaySwitcher is designed to facilitate the management of saved payment methods
Last updated
Get your API key from .
Add an endpoint on your server that creates an Ephemeral Key. An ephemeral key is a temporary, short-lived key used to securely manage sensitive operations, such as updating or deleting payment methods, without exposing full access credentials. It has a limited validity period and restricted capabilities, ensuring that it can only be used for specific tasks and not for initiating payments. This enhances security by minimizing the risk of unauthorized access and reducing the exposure of sensitive data. Return the secret
obtained in the response to setup Payment Methods Management on client.
2.1 Install the hyper-js
and react-hyper-js
libraries
Install the packages and import it into your code
2.2 Add hyper
to your React app
2.3 Load hyper-js
2.4 Fetch the Payment
Make a request to the endpoint on your server to create a new Ephemeral Key. The ephemeralKey
returned by your endpoint is used to fetch all the customer saved payment methods.
2.5 Initialise HyperManagementElements
2.6 Add the Payment Methods Management Element
Add the PaymentMethodsManagementElement
to your Payment Management Form. This embeds an iframe with a dynamic form that displays saved payment methods, allowing your customer to see all their saved payment methods and delete them.
Congratulations! Now that you have integrated the PaySwitcher Payment Methods Management on your app, you can customize the it to blend with the rest of your app.
Call loadHyper
with your publishable API keys to configure the library. To get an publishable Key please find it .
Pass the promise from loadHyper
to the HyperManagementElements
component. This allows the child components to access the Hyper service via the HyperManagementElements
parent component. Additionally, pass the ephemeralKey
in to the HyperManagementElements
component.