fix(payment_link): render SDK for status requires_payment_method #2887
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type of Change
Description
requires_payment_method
Additional Changes
Motivation and Context
How did you test it?
Test Case
use the curl below to generate payment_link and check whether the payment link is opening test few transactions aswell
curl --location 'https://sandbox.hyperswitch.io/payments' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --header 'api-key: snd_RrnVYK6c3puJkhYm3seCFACIpJuKjG5ZkydUP9fbPFAqVYiYCaSgQXqYQLsTwMUM' \ --data '{ "amount": 3423, "currency": "USD", "confirm": false, "customer_id": "sahkal", "return_url":"https://google.com", "description": "For selling Tea", "order_details":[{ "product_name":"Tea", "quantity":1, "amount":10, "product_img_link":"https://thumbs.dreamstime.com/b/indian-tea-spices-masala-chai-33827904.jpg" }, { "product_name":"Tea", "quantity":1, "amount":10, "product_img_link":"https://thumbs.dreamstime.com/b/indian-tea-spices-masala-chai-33827904.jpg" }, { "product_name":"Tea", "quantity":1, "amount":10, "product_img_link":"https://thumbs.dreamstime.com/b/indian-tea-spices-masala-chai-33827904.jpg" }, { "product_name":"Tea", "quantity":1, "amount":10, "product_img_link":"https://thumbs.dreamstime.com/b/indian-tea-spices-masala-chai-33827904.jpg" }, { "product_name":"Tea", "quantity":1, "amount":10, "product_img_link":"https://thumbs.dreamstime.com/b/indian-tea-spices-masala-chai-33827904.jpg" }], "payment_link_object": { "link_expiry" : "2025-10-09T16:23:10Z", "merchant_custom_domain_name": null, "custom_merchant_name": "sahkal" } }'
Checklist
cargo +nightly fmt --all
cargo clippy