Use cases for Saved card
Setting up and managing recurring payments
Saving a payment method for future on-session payments (COF CIT)
curl --location 'https://sandbox.hyperswitch.io/payments' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: <enter your Hyperswitch API key here>' \
--data-raw '{
"amount": 6540,
"currency": "USD",
"profile_id": <enter the relevant profile id>,
"setup_future_usage":"on_session",
"customer_id": "customer123",
"description": "Its my first payment request",
"return_url": "https://example.com", //
}'
Saving a payment method for future MIT payments
To save a customer's payment method used in a successful transaction for future MIT payments:
Using a saved payment method to do a MIT payment
Processing MIT Payments Without a Saved Payment Method
Last updated
Was this helpful?

