diff --git "a/prs/pr_7508.json" "b/prs/pr_7508.json"
new file mode 100644--- /dev/null
+++ "b/prs/pr_7508.json"
@@ -0,0 +1,459 @@
+{
+ "number": 7508,
+ "title": "feat(connectors): [Redsys] add 3D secure card payment support, including transaction capture, cancellation, and refunds",
+ "description": "## Type of Change\r\n\r\n\r\n- [x] Bugfix\r\n- [x] New feature\r\n- [ ] Enhancement\r\n- [ ] Refactoring\r\n- [ ] Dependency updates\r\n- [ ] Documentation\r\n- [ ] CI/CD\r\n\r\n## Description\r\n\r\nIn this PR \r\n1. A new next action is added\r\n```json\r\n \"next_action\": {\r\n \"type\": \"invoke_hidden_iframe\",\r\n \"iframe_data\": {\r\n \"method_key\": \"threeDSMethodData\",\r\n \"three_ds_method_url\": \"https://sis-d.redsys.es/sis-simulador-web/threeDsMethod.jsp\",\r\n \"three_ds_method_data_submission\": true,\r\n \"three_ds_method_data\": \"eyJ0aHJlZURTU2VydmVyVHJhbnNJRCI6Imh0dHBzOi8vc2lzLWQucmVkc3lzLmVzL3Npcy1zaW11bGFkb3Itd2ViL3RocmVlRHNNZXRob2QuanNwIiwidGhyZWVEU01ldGhvZE5vdGlmaWNhdGlvblVSTCI6Imh0dHA6Ly9sb2NhbGhvc3Q6ODA4MC93ZWJob29rcy9wb3N0bWFuX21lcmNoYW50X0dIQWN0aW9uX2VkMzczYmQzLTM4MGYtNDAyNi1hZGY3LTNiN2I2MzAwOGFhNy9tY2FfYUI2Tk9BdXk4cEpLV2ZPd1NUaUcifQ==\",\r\n \"directory_server_id\": \"e8a57182-7192-474f-8808-e651855c0dd7\",\r\n \"message_version\": \"2.1.0\"\r\n }\r\n }\r\n```\r\n2. Threeds Methods completion flag is added to the payments request and is used in the complete authorize router data\r\n3. Card 3DS Implemeneted for Redsys\r\nRedsys 3DS has 4 Scenarios \r\n-> Threeds Invoke + Challenge (Card number to trigger - 4918019199883839)\r\n-> Threeds Invoke + Frictionless (Card number to trigger - 4918019160034602)\r\n-> Challenge (Card number to trigger - 4548817212493017)\r\n-> Frictionless (Card number to trigger - 4548814479727229)\r\n\r\nRedsys Connector Create\r\n\r\n```\r\n \"connector_account_details\": {\r\n \"auth_type\": \"SignatureKey\",\r\n \"api_key\": \"merchant_id\",\r\n \"key1\": \"terminal_id\",\r\n \"api_secret\": \"sha256_pwd\"\r\n }\r\n```\r\n\r\n## Additional Fixes \r\nModifications have been made to ensure: \r\n1. Preprocessing for Xendit payments will only be triggered during the PaymentsAuthorize call. \r\n2. If a payment method is supported by the connector and the payment_method_type for the transaction is unspecified (None), the payment method will be regarded as supported by the connector.\r\n3. Signals feature is removed from `hyperswitch_connector` crate\r\n\r\n## How is this next action different form ThreedsInvoke\r\nIn ThreedsInvoke, after invoking an iframe. The front end, has to call two other APIs to complete the payment. This next action only requires calling complete_authorize API\r\n\r\n### Additional Changes\r\n\r\n- [x] This PR modifies the API contract\r\n- [ ] This PR modifies the database schema\r\n- [ ] This PR modifies application configuration/environment variables\r\n\r\n## Points to Ponder\r\n-> All statuses from redsys is not completely handled. (Waiting on clarity)\r\n-> Psync and Rsync are not implemented. (Waiting on clarity)\r\n\r\n\r\n## How did you test it?\r\n\r\n\r\n\r\nRedsys Connector Create
\r\n\r\n```json\r\n{\r\n \"connector_type\": \"payment_processor\",\r\n \"connector_name\": \"redsys\",\r\n \"business_country\": \"US\",\r\n \"business_label\": \"default\",\r\n \"connector_account_details\": {\r\n \"auth_type\": \"SignatureKey\",\r\n \"api_key\": \"**********************\",\r\n \"key1\": \"****\",\r\n \"api_secret\": \"***********\"\r\n },\r\n \"test_mode\": false,\r\n \"disabled\": false,\r\n \"payment_methods_enabled\": [\r\n {\r\n \"payment_method\": \"card\",\r\n \"payment_method_types\": [\r\n {\r\n \"payment_method_type\": \"credit\",\r\n \"minimum_amount\": 1,\r\n \"maximum_amount\": 68607706,\r\n \"recurring_enabled\": true,\r\n \"installment_payment_enabled\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"payment_method\": \"card\",\r\n \"payment_method_types\": [\r\n {\r\n \"payment_method_type\": \"debit\",\r\n \"minimum_amount\": 1,\r\n \"maximum_amount\": 68607706,\r\n \"recurring_enabled\": true,\r\n \"installment_payment_enabled\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"payment_method\": \"wallet\",\r\n \"payment_method_types\": [\r\n {\r\n \"payment_method_type\": \"apple_pay\",\r\n \"payment_experience\": \"invoke_sdk_client\",\r\n \"minimum_amount\": 1,\r\n \"maximum_amount\": 68607706,\r\n \"recurring_enabled\": true,\r\n \"installment_payment_enabled\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"payment_method\": \"wallet\",\r\n \"payment_method_types\": [\r\n {\r\n \"payment_method_type\": \"google_pay\",\r\n \"payment_experience\": \"invoke_sdk_client\",\r\n \"minimum_amount\": 1,\r\n \"maximum_amount\": 68607706,\r\n \"recurring_enabled\": true,\r\n \"installment_payment_enabled\": true\r\n }\r\n ]\r\n }\r\n ]\r\n}\r\n```\r\nResponse\r\n\r\n```json\r\n{\"connector_type\":\"payment_processor\",\"connector_name\":\"redsys\",\"connector_label\":\"redsys_US_default\",\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"connector_account_details\":{\"auth_type\":\"SignatureKey\",\"api_key\":\"33*****31\",\"key1\":\"***\",\"api_secret\":\"sq****************************J7\"},\"payment_methods_enabled\":[{\"payment_method\":\"pay_later\",\"payment_method_types\":[{\"payment_method_type\":\"affirm\",\"payment_experience\":\"redirect_to_url\",\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"pay_later\",\"payment_method_types\":[{\"payment_method_type\":\"afterpay_clearpay\",\"payment_experience\":\"redirect_to_url\",\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"pay_later\",\"payment_method_types\":[{\"payment_method_type\":\"klarna\",\"payment_experience\":\"redirect_to_url\",\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"pay_later\",\"payment_method_types\":[{\"payment_method_type\":\"klarna\",\"payment_experience\":\"invoke_sdk_client\",\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"bank_redirect\",\"payment_method_types\":[{\"payment_method_type\":\"ideal\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"bancontact_card\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"przelewy24\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"giropay\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"sofort\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"eps\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"bank_debit\",\"payment_method_types\":[{\"payment_method_type\":\"ach\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"becs\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"sepa\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"bacs\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"bank_transfer\",\"payment_method_types\":[{\"payment_method_type\":\"ach\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"bacs\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true},{\"payment_method_type\":\"sepa\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"credit\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"card\",\"payment_method_types\":[{\"payment_method_type\":\"debit\",\"payment_experience\":null,\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"wallet\",\"payment_method_types\":[{\"payment_method_type\":\"apple_pay\",\"payment_experience\":\"invoke_sdk_client\",\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]},{\"payment_method\":\"wallet\",\"payment_method_types\":[{\"payment_method_type\":\"google_pay\",\"payment_experience\":\"invoke_sdk_client\",\"card_networks\":null,\"accepted_currencies\":null,\"accepted_countries\":null,\"minimum_amount\":1,\"maximum_amount\":68607706,\"recurring_enabled\":true,\"installment_payment_enabled\":true}]}],\"connector_webhook_details\":null,\"metadata\":{\"google_pay\":{\"merchant_info\":{\"merchant_name\":\"Narayan Bhat\"},\"allowed_payment_methods\":[{\"type\":\"CARD\",\"parameters\":{\"allowed_auth_methods\":[\"PAN_ONLY\",\"CRYPTOGRAM_3DS\"],\"allowed_card_networks\":[\"AMEX\",\"DISCOVER\",\"INTERAC\",\"JCB\",\"MASTERCARD\",\"VISA\"]},\"tokenization_specification\":{\"type\":\"PAYMENT_GATEWAY\",\"parameters\":{\"gateway\":\"example\",\"gateway_merchant_id\":\"\"}}}]}},\"test_mode\":false,\"disabled\":false,\"frm_configs\":null,\"business_country\":\"US\",\"business_label\":\"default\",\"business_sub_label\":null,\"applepay_verified_domains\":null,\"pm_auth_config\":null,\"status\":\"active\",\"additional_merchant_data\":null,\"connector_wallets_details\":null}\r\n```\r\n\r\n \r\n\r\n\r\nPayment Create: Frictionless
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount\": 10,\r\n \"currency\": \"EUR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"automatic\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4548814479727229\", \r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n }, \r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n }\r\n ,\r\n \"billing\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"joseph\",\r\n \"last_name\": \"Doe\"\r\n },\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n }\r\n },\r\n \"shipping\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\"\r\n }\r\n },\r\n \"setup_future_usage\":\"on_session\"\r\n}'\r\n```\r\nResponse\r\n\r\n```json\r\n{\"payment_id\":\"pay_w32cQlkoQfrpYWCvFmcv\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"succeeded\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":0,\"amount_received\":10,\"connector\":\"redsys\",\"client_secret\":\"pay_w32cQlkoQfrpYWCvFmcv_secret_QUBMClABR8P1ckRBrp7u\",\"created\":\"2025-03-13T08:26:27.905Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"7229\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_tff9SQ5Wzs1f8OZe9wO6\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1741854387,\"expires\":1741857987,\"secret\":\"epk_b0de0f8520fe4c1eaa8b819df853bdac\"},\"manual_retry_allowed\":false,\"connector_transaction_id\":\"581314507799\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:41:27.905Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:26:33.172Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n \r\n\r\n\r\nPayment Create: Challenge
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount\": 10,\r\n \"currency\": \"EUR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"automatic\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4548817212493017\", \r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n },\r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n } \r\n ,\r\n \"billing\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"joseph\",\r\n \"last_name\": \"Doe\"\r\n },\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n }\r\n },\r\n \"shipping\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\"\r\n }\r\n },\r\n \"setup_future_usage\":\"on_session\"\r\n}'\r\n```\r\nResponse\r\n\r\n```json\r\n{\"payment_id\":\"pay_qw5tcYOYHGO7RBXKrKwR\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"requires_customer_action\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":10,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_qw5tcYOYHGO7RBXKrKwR_secret_BuQ17aZIs3UZsCyHBu0K\",\"created\":\"2025-03-13T08:30:36.990Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"3017\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_5yr2SCPsa7G4GWbID1Fm\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":{\"type\":\"redirect_to_url\",\"redirect_to_url\":\"http://localhost:8080/payments/redirect/pay_qw5tcYOYHGO7RBXKrKwR/postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7/pay_qw5tcYOYHGO7RBXKrKwR_1\"},\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1741854636,\"expires\":1741858236,\"secret\":\"epk_9cc0878420ec48e5af4966a15e55d3d1\"},\"manual_retry_allowed\":null,\"connector_transaction_id\":\"457103313984\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:45:36.990Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:30:41.901Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n\r\n-> Payments Retrieve\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments/pay_qw5tcYOYHGO7RBXKrKwR?force_sync=true' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu'\r\n```\r\nResponse\r\n\r\n```json\r\n{\"payment_id\":\"pay_qw5tcYOYHGO7RBXKrKwR\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"succeeded\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":0,\"amount_received\":10,\"connector\":\"redsys\",\"client_secret\":\"pay_qw5tcYOYHGO7RBXKrKwR_secret_BuQ17aZIs3UZsCyHBu0K\",\"created\":\"2025-03-13T08:30:36.990Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"3017\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_5yr2SCPsa7G4GWbID1Fm\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":null,\"manual_retry_allowed\":false,\"connector_transaction_id\":\"457103313984\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:45:36.990Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:32:09.374Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n \r\n\r\n\r\nPayment Create: Threeds Method + Challenge
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount\": 10,\r\n \"currency\": \"EUR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"automatic\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4918019199883839\", \r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n },\r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n }\r\n\r\n ,\r\n \"billing\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"joseph\",\r\n \"last_name\": \"Doe\"\r\n },\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n }\r\n },\r\n \"shipping\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\"\r\n }\r\n },\r\n \"setup_future_usage\":\"on_session\"\r\n}'\r\n```\r\n```json\r\n{\"payment_id\":\"pay_VItcgnob8449Uq87QKZw\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"requires_customer_action\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":10,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_VItcgnob8449Uq87QKZw_secret_Uatpvz6pE9paD5qG0GmJ\",\"created\":\"2025-03-13T08:34:16.189Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"3839\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"491801\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_bTLziwNEXrBt6NvcBgOf\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":{\"type\":\"invoke_hidden_iframe\",\"iframe_data\":{\"method_key\":\"threeDSMethodData\",\"three_ds_method_url\":\"https://sis-d.redsys.es/sis-simulador-web/threeDsMethod.jsp\",\"three_ds_method_data_submission\":true,\"three_ds_method_data\":\"eyJ0aHJlZURTU2VydmVyVHJhbnNJRCI6Imh0dHBzOi8vc2lzLWQucmVkc3lzLmVzL3Npcy1zaW11bGFkb3Itd2ViL3RocmVlRHNNZXRob2QuanNwIiwidGhyZWVEU01ldGhvZE5vdGlmaWNhdGlvblVSTCI6Imh0dHA6Ly9sb2NhbGhvc3Q6ODA4MC93ZWJob29rcy9wb3N0bWFuX21lcmNoYW50X0dIQWN0aW9uX2VkMzczYmQzLTM4MGYtNDAyNi1hZGY3LTNiN2I2MzAwOGFhNy9tY2FfYUI2Tk9BdXk4cEpLV2ZPd1NUaUcifQ==\",\"directory_server_id\":\"e8a57182-7192-474f-8808-e651855c0dd7\",\"message_version\":\"2.1.0\"}},\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1741854856,\"expires\":1741858456,\"secret\":\"epk_2097ff4011804a1c87c04565b3d33189\"},\"manual_retry_allowed\":null,\"connector_transaction_id\":\"506037405236\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:49:16.189Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:34:17.309Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\nCreate an iframe from these details and then obtain the value for threeds_method_comp_ind then call\r\n-> Complete Auth\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments/pay_VItcgnob8449Uq87QKZw/complete_authorize' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: pk_dev_ed8b0f1fb0b44c66a7fd1dc560995d04' \\\r\n--data '{\r\n \"threeds_method_comp_ind\": \"Y\",\r\n \"client_secret\": \"pay_VItcgnob8449Uq87QKZw_secret_Uatpvz6pE9paD5qG0GmJ\"\r\n}'\r\n```\r\nResponse\r\n```json\r\n{\"payment_id\":\"pay_VItcgnob8449Uq87QKZw\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"requires_customer_action\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":10,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_VItcgnob8449Uq87QKZw_secret_Uatpvz6pE9paD5qG0GmJ\",\"created\":\"2025-03-13T08:34:16.189Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"3839\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"491801\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_bTLziwNEXrBt6NvcBgOf\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":{\"type\":\"redirect_to_url\",\"redirect_to_url\":\"http://localhost:8080/payments/redirect/pay_VItcgnob8449Uq87QKZw/postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7/pay_VItcgnob8449Uq87QKZw_1\"},\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":null,\"manual_retry_allowed\":null,\"connector_transaction_id\":\"506037405236\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:49:16.189Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:37:43.149Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n\r\n-> Payments Retrieve\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments/pay_VItcgnob8449Uq87QKZw?force_sync=true' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu'\r\n```\r\n\r\nResponse \r\n```\r\n{\"payment_id\":\"pay_VItcgnob8449Uq87QKZw\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"succeeded\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":0,\"amount_received\":10,\"connector\":\"redsys\",\"client_secret\":\"pay_VItcgnob8449Uq87QKZw_secret_Uatpvz6pE9paD5qG0GmJ\",\"created\":\"2025-03-13T08:34:16.189Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"3839\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"491801\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_bTLziwNEXrBt6NvcBgOf\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":null,\"manual_retry_allowed\":false,\"connector_transaction_id\":\"506037405236\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:49:16.189Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:37:57.180Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n \r\n\r\n\r\nThreeds Method : Frictionless
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount\": 10,\r\n \"currency\": \"EUR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"automatic\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4918019160034602\", \r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n }, \r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n } \r\n ,\r\n \"billing\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"joseph\",\r\n \"last_name\": \"Doe\"\r\n },\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n }\r\n },\r\n \"shipping\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\"\r\n }\r\n },\r\n \"setup_future_usage\":\"on_session\"\r\n}'\r\n```\r\nResponse\r\n```json\r\n{\"payment_id\":\"pay_HVfveIgQwggMODsNmAkV\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"requires_customer_action\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":10,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_HVfveIgQwggMODsNmAkV_secret_b4VuuSEVprws2M6G9eMz\",\"created\":\"2025-03-13T08:40:59.019Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"4602\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"491801\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_XfL6fPhyIm8vh5KESUQI\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":{\"type\":\"invoke_hidden_iframe\",\"iframe_data\":{\"method_key\":\"threeDSMethodData\",\"three_ds_method_url\":\"https://sis-d.redsys.es/sis-simulador-web/threeDsMethod.jsp\",\"three_ds_method_data_submission\":true,\"three_ds_method_data\":\"eyJ0aHJlZURTU2VydmVyVHJhbnNJRCI6Imh0dHBzOi8vc2lzLWQucmVkc3lzLmVzL3Npcy1zaW11bGFkb3Itd2ViL3RocmVlRHNNZXRob2QuanNwIiwidGhyZWVEU01ldGhvZE5vdGlmaWNhdGlvblVSTCI6Imh0dHA6Ly9sb2NhbGhvc3Q6ODA4MC93ZWJob29rcy9wb3N0bWFuX21lcmNoYW50X0dIQWN0aW9uX2VkMzczYmQzLTM4MGYtNDAyNi1hZGY3LTNiN2I2MzAwOGFhNy9tY2FfYUI2Tk9BdXk4cEpLV2ZPd1NUaUcifQ==\",\"directory_server_id\":\"a4ca6fb2-ddba-456b-a352-8a7550353974\",\"message_version\":\"2.1.0\"}},\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1741855258,\"expires\":1741858858,\"secret\":\"epk_bda97529ec5f4ce0a5e78ecf23e29479\"},\"manual_retry_allowed\":null,\"connector_transaction_id\":\"917303044435\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:55:59.019Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:41:00.075Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n-> Complete Authorize\r\n```json\r\ncurl --location 'http://localhost:8080/payments/pay_HVfveIgQwggMODsNmAkV/complete_authorize' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: pk_dev_87e0e03839214e2b991420b109984637' \\\r\n--data '{\r\n \"threeds_method_comp_ind\": \"Y\",\r\n \"client_secret\": \"pay_HVfveIgQwggMODsNmAkV_secret_b4VuuSEVprws2M6G9eMz\"\r\n}'\r\n```\r\nResponse\r\n```json\r\n{\"payment_id\":\"pay_HVfveIgQwggMODsNmAkV\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"succeeded\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":0,\"amount_received\":10,\"connector\":\"redsys\",\"client_secret\":\"pay_HVfveIgQwggMODsNmAkV_secret_b4VuuSEVprws2M6G9eMz\",\"created\":\"2025-03-13T08:40:59.019Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"4602\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"491801\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_XfL6fPhyIm8vh5KESUQI\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":null,\"manual_retry_allowed\":false,\"connector_transaction_id\":\"917303044435\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:55:59.019Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:42:17.894Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n \r\n\r\n\r\nManual Capture
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount\": 10,\r\n \"currency\": \"EUR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"manual\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4548814479727229\", \r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n }, \r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n },\r\n \"billing\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"joseph\",\r\n \"last_name\": \"Doe\"\r\n },\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n }\r\n },\r\n \"shipping\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\"\r\n }\r\n },\r\n \"setup_future_usage\":\"on_session\"\r\n}'\r\n```\r\n\r\nResponse\r\n```json\r\n{\"payment_id\":\"pay_qcZiVdQQn7f6MGCZtZBf\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"requires_capture\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":10,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_qcZiVdQQn7f6MGCZtZBf_secret_OcJOMyRHrIVtbngWXLYr\",\"created\":\"2025-03-13T08:44:24.672Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"manual\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"7229\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_lEr4y3EaJ6Re7374wHU1\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1741855464,\"expires\":1741859064,\"secret\":\"epk_71e44d9e722e4f648bcd5feac33be76a\"},\"manual_retry_allowed\":false,\"connector_transaction_id\":\"422121527515\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:59:24.672Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:44:29.165Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n-> Capture\r\n```json\r\ncurl --location 'http://localhost:8080/payments/pay_qcZiVdQQn7f6MGCZtZBf/capture' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount_to_capture\": 5,\r\n \"statement_descriptor_name\": \"Joseph\",\r\n \"statement_descriptor_suffix\": \"JS\"\r\n}'\r\n```\r\nResponse\r\n```json\r\n{\"payment_id\":\"pay_qcZiVdQQn7f6MGCZtZBf\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"partially_captured\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":0,\"amount_received\":5,\"connector\":\"redsys\",\"client_secret\":\"pay_qcZiVdQQn7f6MGCZtZBf_secret_OcJOMyRHrIVtbngWXLYr\",\"created\":\"2025-03-13T08:44:24.672Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"manual\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"7229\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_lEr4y3EaJ6Re7374wHU1\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":null,\"manual_retry_allowed\":false,\"connector_transaction_id\":\"422121527515\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":\"422121527515\",\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T08:59:24.672Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:45:44.002Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n\r\n \r\n\r\n\r\nRefunds
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/refunds' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"payment_id\": \"pay_qcZiVdQQn7f6MGCZtZBf\",\r\n \"amount\": 5,\r\n \"reason\": \"Customer returned product\",\r\n \"refund_type\": \"instant\",\r\n \"metadata\": {\r\n \"udf1\": \"value1\",\r\n \"new_customer\": \"true\",\r\n \"login_date\": \"2019-09-10T10:11:12Z\"\r\n }\r\n}'\r\n```\r\nResponse\r\n```json\r\n{\"refund_id\":\"ref_YERbzFCx14PLMpJW0P5j\",\"payment_id\":\"pay_qcZiVdQQn7f6MGCZtZBf\",\"amount\":5,\"currency\":\"EUR\",\"status\":\"succeeded\",\"reason\":\"Customer returned product\",\"metadata\":{\"udf1\":\"value1\",\"new_customer\":\"true\",\"login_date\":\"2019-09-10T10:11:12Z\"},\"error_message\":null,\"error_code\":null,\"unified_code\":null,\"unified_message\":null,\"created_at\":\"2025-03-13T08:46:24.506Z\",\"updated_at\":\"2025-03-13T08:46:25.605Z\",\"connector\":\"redsys\",\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"split_refunds\":null}\r\n```\r\n \r\n\r\n\r\nCancel
\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\r\n \"amount\": 10,\r\n \"currency\": \"EUR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"manual\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4548814479727229\", \r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n },\r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n }\r\n ,\r\n \"billing\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"joseph\",\r\n \"last_name\": \"Doe\"\r\n },\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n }\r\n },\r\n \"shipping\": {\r\n \"address\": {\r\n \"line1\": \"1467\",\r\n \"line2\": \"Harrison Street\",\r\n \"line3\": \"Harrison Street\",\r\n \"city\": \"San Fransico\",\r\n \"state\": \"Ceuta\",\r\n \"zip\": \"94122\",\r\n \"country\": \"ES\",\r\n \"first_name\": \"John\",\r\n \"last_name\": \"Doe\"\r\n }\r\n },\r\n \"setup_future_usage\":\"on_session\"\r\n}'\r\n```\r\n\r\nResponse \r\n\r\n```json\r\n{\"payment_id\":\"pay_byaJdEXTecxmaSl1DjY9\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"requires_capture\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":10,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_byaJdEXTecxmaSl1DjY9_secret_LcVjyiksCPMr03SyGwWm\",\"created\":\"2025-03-13T08:48:54.587Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"manual\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"7229\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_Hqkm1zmZPJtFwWz7dbPw\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1741855734,\"expires\":1741859334,\"secret\":\"epk_6e708e7a6220453b9bc20eef5ce38da5\"},\"manual_retry_allowed\":false,\"connector_transaction_id\":\"219029278965\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":null,\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T09:03:54.587Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:48:59.602Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n\r\n-> Cancel \r\n```json\r\ncurl --location 'http://localhost:8080/payments/pay_byaJdEXTecxmaSl1DjY9/cancel' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_bvqj8tQaV1iaCA5W1LZrNeR96tyWQ6DBguyEpYYhfcxMi3cE5Xfrobb13uOZzDRu' \\\r\n--data '{\"cancellation_reason\":\"requested_by_customer\"}'\r\n```\r\nResponse\r\n```json\r\n{\"payment_id\":\"pay_byaJdEXTecxmaSl1DjY9\",\"merchant_id\":\"postman_merchant_GHAction_ed373bd3-380f-4026-adf7-3b7b63008aa7\",\"status\":\"cancelled\",\"amount\":10,\"net_amount\":10,\"shipping_cost\":null,\"amount_capturable\":0,\"amount_received\":null,\"connector\":\"redsys\",\"client_secret\":\"pay_byaJdEXTecxmaSl1DjY9_secret_LcVjyiksCPMr03SyGwWm\",\"created\":\"2025-03-13T08:48:54.587Z\",\"currency\":\"EUR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":\"on_session\",\"off_session\":null,\"capture_on\":null,\"capture_method\":\"manual\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"7229\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"454881\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":\"token_Hqkm1zmZPJtFwWz7dbPw\",\"shipping\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"John\",\"last_name\":\"Doe\"},\"phone\":null,\"email\":null},\"billing\":{\"address\":{\"city\":\"San Fransico\",\"country\":\"ES\",\"line1\":\"1467\",\"line2\":\"Harrison Street\",\"line3\":\"Harrison Street\",\"zip\":\"94122\",\"state\":\"Ceuta\",\"first_name\":\"joseph\",\"last_name\":\"Doe\"},\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":null},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":null,\"cancellation_reason\":\"requested_by_customer\",\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":null,\"manual_retry_allowed\":false,\"connector_transaction_id\":\"219029278965\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":\"219029278965\",\"payment_link\":null,\"profile_id\":\"pro_eOH03lBB7VBEzDNVnhEg\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_aB6NOAuy8pJKWfOwSTiG\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-13T09:03:54.587Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-13T08:56:19.532Z\",\"split_payments\":null,\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\"}\r\n```\r\n\r\n \r\n\r\nXendit Split Payment
\r\nPayment Create\r\n\r\n```json\r\ncurl --location 'http://localhost:8080/payments' \\\r\n--header 'Content-Type: application/json' \\\r\n--header 'Accept: application/json' \\\r\n--header 'api-key: dev_MnVMIySY3tKCQVap0PK5vy1XfO8zoWY9xc77rKmoHmJSyEUyEpf2qmcwFZ3gyRsN' \\\r\n--data-raw '{\r\n \"amount\": 1500000,\r\n \"currency\": \"IDR\",\r\n \"confirm\": true,\r\n \"capture_method\": \"automatic\",\r\n \"capture_on\": \"2022-09-10T10:11:12Z\",\r\n \"customer_id\": \"First_Customer\",\r\n \"name\": \"John Doe\",\r\n \"authentication_type\": \"three_ds\",\r\n \"return_url\": \"https://google.com\",\r\n \"payment_method\": \"card\",\r\n \"payment_method_type\": \"credit\",\r\n \"payment_method_data\": {\r\n \"card\": {\r\n \"card_number\": \"4918019199883839\",\r\n \"card_exp_month\": \"12\",\r\n \"card_exp_year\": \"25\",\r\n \"card_holder_name\": \"joseph Doe\",\r\n \"card_cvc\": \"124\"\r\n }\r\n },\r\n \"billing\": {\r\n \"phone\": {\r\n \"number\": \"8056594427\",\r\n \"country_code\": \"+91\"\r\n },\r\n \"email\": \"johndoe@gmail.com\"\r\n },\r\n \"browser_info\": {\r\n \"user_agent\": \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\r\n \"accept_header\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\r\n \"language\": \"nl-NL\",\r\n \"color_depth\": 24,\r\n \"screen_height\": 723,\r\n \"screen_width\": 1536,\r\n \"time_zone\": 0,\r\n \"java_enabled\": true,\r\n \"java_script_enabled\": true,\r\n \"ip_address\": \"13.232.74.226\"\r\n }\r\n\r\n ,\"split_payments\": {\r\n \"xendit_split_payment\": {\r\n \"multiple_splits\" : {\r\n \"name\": \"20210908 Test\",\r\n \r\n \"description\": \"Platform fee and Delivery Fee for Marketplace\",\r\n \"routes\": [\r\n {\r\n \"flat_amount\": 100000,\r\n \"currency\": \"IDR\",\r\n \"destination_account_id\": \"*********************\",\r\n \"reference_id\": \"1234\"\r\n },\r\n {\r\n \"percent_amount\": 5,\r\n \"currency\": \"IDR\",\r\n \"destination_account_id\": \"**********************\",\r\n \"reference_id\": \"1235\"\r\n }\r\n ]\r\n }\r\n }\r\n } \r\n}'\r\n```\r\n\r\nResponse\r\n\r\n```json\r\n{\"payment_id\":\"pay_ytaRhxZOA1qetfZVyYOQ\",\"merchant_id\":\"postman_merchant_GHAction_ca24bf53-c232-4a12-857d-a8a7a3959dc8\",\"status\":\"requires_customer_action\",\"amount\":1500000,\"net_amount\":1500000,\"shipping_cost\":null,\"amount_capturable\":1500000,\"amount_received\":null,\"connector\":\"xendit\",\"client_secret\":\"pay_ytaRhxZOA1qetfZVyYOQ_secret_k4Dp1ZI88zO3k8EyNt0x\",\"created\":\"2025-03-19T16:38:13.196Z\",\"currency\":\"IDR\",\"customer_id\":\"First_Customer\",\"customer\":{\"id\":\"First_Customer\",\"name\":\"John Doe\",\"email\":null,\"phone\":null,\"phone_country_code\":null},\"description\":null,\"refunds\":null,\"disputes\":null,\"mandate_id\":null,\"mandate_data\":null,\"setup_future_usage\":null,\"off_session\":null,\"capture_on\":null,\"capture_method\":\"automatic\",\"payment_method\":\"card\",\"payment_method_data\":{\"card\":{\"last4\":\"3839\",\"card_type\":null,\"card_network\":null,\"card_issuer\":null,\"card_issuing_country\":null,\"card_isin\":\"491801\",\"card_extended_bin\":null,\"card_exp_month\":\"12\",\"card_exp_year\":\"25\",\"card_holder_name\":\"joseph Doe\",\"payment_checks\":null,\"authentication_data\":null},\"billing\":null},\"payment_token\":null,\"shipping\":null,\"billing\":{\"address\":null,\"phone\":{\"number\":\"8056594427\",\"country_code\":\"+91\"},\"email\":\"johndoe@gmail.com\"},\"order_details\":null,\"email\":null,\"name\":\"John Doe\",\"phone\":null,\"return_url\":\"https://google.com/\",\"authentication_type\":\"three_ds\",\"statement_descriptor_name\":null,\"statement_descriptor_suffix\":null,\"next_action\":{\"type\":\"redirect_to_url\",\"redirect_to_url\":\"http://localhost:8080/payments/redirect/pay_ytaRhxZOA1qetfZVyYOQ/postman_merchant_GHAction_ca24bf53-c232-4a12-857d-a8a7a3959dc8/pay_ytaRhxZOA1qetfZVyYOQ_1\"},\"cancellation_reason\":null,\"error_code\":null,\"error_message\":null,\"unified_code\":null,\"unified_message\":null,\"payment_experience\":null,\"payment_method_type\":\"credit\",\"connector_label\":null,\"business_country\":null,\"business_label\":\"default\",\"business_sub_label\":null,\"allowed_payment_method_types\":null,\"ephemeral_key\":{\"customer_id\":\"First_Customer\",\"created_at\":1742402293,\"expires\":1742405893,\"secret\":\"epk_a3aa00f374ff4cc68e817623b2653872\"},\"manual_retry_allowed\":null,\"connector_transaction_id\":\"pr-4ca916d9-9f25-4326-8582-575a1f82e7d1\",\"frm_message\":null,\"metadata\":null,\"connector_metadata\":null,\"feature_metadata\":null,\"reference_id\":\"7b3fb80f-8928-473e-a66d-6501da014324\",\"payment_link\":null,\"profile_id\":\"pro_81YEDWujEkUUJHajg3eb\",\"surcharge_details\":null,\"attempt_count\":1,\"merchant_decision\":null,\"merchant_connector_id\":\"mca_KfvuDqkWkkL61kbZ0441\",\"incremental_authorization_allowed\":null,\"authorization_count\":null,\"incremental_authorizations\":null,\"external_authentication_details\":null,\"external_3ds_authentication_attempted\":false,\"expires_on\":\"2025-03-19T16:53:13.196Z\",\"fingerprint\":null,\"browser_info\":{\"language\":\"nl-NL\",\"time_zone\":0,\"ip_address\":\"13.232.74.226\",\"user_agent\":\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36\",\"color_depth\":24,\"java_enabled\":true,\"screen_width\":1536,\"accept_header\":\"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8\",\"screen_height\":723,\"java_script_enabled\":true},\"payment_method_id\":null,\"payment_method_status\":null,\"updated\":\"2025-03-19T16:38:14.692Z\",\"split_payments\":{\"xendit_split_payment\":{\"multiple_splits\":{\"split_rule_id\":\"splitru_5d653bd1-9189-484a-a7cb-7c1481c38114\",\"for_user_id\":null,\"name\":\"20210908 Test\",\"description\":\"Platform fee and Delivery Fee for Marketplace\",\"routes\":[{\"flat_amount\":100000,\"percent_amount\":null,\"currency\":\"IDR\",\"destination_account_id\":\"678a407d0951bdff0db5ba78\",\"reference_id\":\"1234\"},{\"flat_amount\":null,\"percent_amount\":5,\"currency\":\"IDR\",\"destination_account_id\":\"678a29180bffc2f28d8527c0\",\"reference_id\":\"1235\"}]}}},\"frm_metadata\":null,\"extended_authorization_applied\":null,\"capture_before\":null,\"merchant_order_reference_id\":null,\"order_tax_amount\":null,\"connector_mandate_id\":null,\"card_discovery\":\"manual\",\"issuer_error_code\":null,\"issuer_error_message\":null}\r\n```\r\n\r\n \r\n\r\n## Checklist\r\n\r\n\r\n- [x] I formatted the code `cargo +nightly fmt --all`\r\n- [x] I addressed lints thrown by `cargo clippy`\r\n- [ ] I reviewed the submitted code\r\n- [ ] I added unit tests for my changes where possible\r\n",
+ "author": "AkshayaFoiger",
+ "created_at": "2025-03-13T05:38:22+00:00",
+ "merged_at": "2025-03-21T10:12:17+00:00",
+ "base_branch": "main",
+ "labels": [
+ "A-connector-compatibility",
+ "A-connector-integration",
+ "A-core",
+ "M-api-contract-changes"
+ ],
+ "url": "https://github.com/juspay/hyperswitch/pull/7508",
+ "commits": [
+ {
+ "sha": "5e67785f1eeb93f59057946eaeb68f668dca703f",
+ "message": "undo commit",
+ "author": "AkshayaFoiger",
+ "date": "2025-02-23T15:32:28+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/5e67785f1eeb93f59057946eaeb68f668dca703f"
+ },
+ {
+ "sha": "42a03275809b0271a88a48ffc97a338405da9473",
+ "message": "add preprocessing in core and update sandbox url",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-01T19:39:05+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/42a03275809b0271a88a48ffc97a338405da9473"
+ },
+ {
+ "sha": "e524ef6c2db19ceda4bcea1ca2bc1ee7726c0cec",
+ "message": "add three_ds_invoke to prayment connect next action",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-03T11:53:14+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/e524ef6c2db19ceda4bcea1ca2bc1ee7726c0cec"
+ },
+ {
+ "sha": "0b9967365ad016fe14e99dc86b7bbb9b83946816",
+ "message": "make poll config optional",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-04T05:32:49+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/0b9967365ad016fe14e99dc86b7bbb9b83946816"
+ },
+ {
+ "sha": "7779d406fda3886cda056f409eef458a8c05bd76",
+ "message": "add capture, cancel and refund flow",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-11T11:03:46+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/7779d406fda3886cda056f409eef458a8c05bd76"
+ },
+ {
+ "sha": "7f9ec3673bec72951649b35f9b0d8e50ab0a4c10",
+ "message": "fix clippy error",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-12T10:08:45+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/7f9ec3673bec72951649b35f9b0d8e50ab0a4c10"
+ },
+ {
+ "sha": "c7a879fc1adb6047915e511fa0a6ff3bd48b0c4c",
+ "message": "fix clippy error",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-12T10:21:20+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/c7a879fc1adb6047915e511fa0a6ff3bd48b0c4c"
+ },
+ {
+ "sha": "21b997f161c7337e77f02c573c6fdc81a107ae7b",
+ "message": "add redsys configs",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-12T14:30:05+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/21b997f161c7337e77f02c573c6fdc81a107ae7b"
+ },
+ {
+ "sha": "16a9ab562116d9732f4ea2973bbfee9c890c93e3",
+ "message": "add state level check",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T07:58:50+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/16a9ab562116d9732f4ea2973bbfee9c890c93e3"
+ },
+ {
+ "sha": "78289a4ba66e3e7f29775fd6c8c1b864db8f8c3f",
+ "message": "Merge branch 'main' into redsys-3ds",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T08:07:04+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/78289a4ba66e3e7f29775fd6c8c1b864db8f8c3f"
+ },
+ {
+ "sha": "f3f6b54854319a0273948d2d2b8b52b3327ca0e1",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-13T08:17:05+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/f3f6b54854319a0273948d2d2b8b52b3327ca0e1"
+ },
+ {
+ "sha": "63240ddacf231ba10b0ecf262ef6ad1335d11ada",
+ "message": "fix clippy error",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T09:13:36+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/63240ddacf231ba10b0ecf262ef6ad1335d11ada"
+ },
+ {
+ "sha": "2be64af6b79def0365d441bbc7d7332226a01e7d",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-13T09:25:14+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/2be64af6b79def0365d441bbc7d7332226a01e7d"
+ },
+ {
+ "sha": "f0655f9e5ed9c275f5986c48a3d4060431dc8b39",
+ "message": "fix errors",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T09:41:23+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/f0655f9e5ed9c275f5986c48a3d4060431dc8b39"
+ },
+ {
+ "sha": "92bb6cddbd9d087e06cf08fa044bc61a1aed3059",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-13T10:49:59+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/92bb6cddbd9d087e06cf08fa044bc61a1aed3059"
+ },
+ {
+ "sha": "fbd567d55d13e03769a7ca27ee1d8a088cb0a354",
+ "message": "resolve comments",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T12:41:49+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/fbd567d55d13e03769a7ca27ee1d8a088cb0a354"
+ },
+ {
+ "sha": "19c5d867083a8aa5bcc9bd63145ceb769e0dc45c",
+ "message": "Merge branch 'main' into redsys-3ds",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T12:43:26+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/19c5d867083a8aa5bcc9bd63145ceb769e0dc45c"
+ },
+ {
+ "sha": "648d9e689c6ec5678f765458edb0879c84d69922",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-13T12:44:22+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/648d9e689c6ec5678f765458edb0879c84d69922"
+ },
+ {
+ "sha": "c2f9935e990ef958bf607ef421a66497bd339d79",
+ "message": "fix spell check",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T12:50:09+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/c2f9935e990ef958bf607ef421a66497bd339d79"
+ },
+ {
+ "sha": "045c8f8eaaf2fd9e4eb7d1fd0e52580d550052c2",
+ "message": "undo comiit",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T12:57:12+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/045c8f8eaaf2fd9e4eb7d1fd0e52580d550052c2"
+ },
+ {
+ "sha": "4afc9d427890d66e90f22c8a78e35f83be140be3",
+ "message": "fix opeanapi_spec",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-13T13:22:59+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/4afc9d427890d66e90f22c8a78e35f83be140be3"
+ },
+ {
+ "sha": "80d87b8b5ee771dbd0f94edd051590b396468476",
+ "message": "Merge branch 'main' into redsys-3ds",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-15T10:29:27+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/80d87b8b5ee771dbd0f94edd051590b396468476"
+ },
+ {
+ "sha": "3a725159d7e80f974f80dc2d8c6b6f994bdd5537",
+ "message": "generate open api spec",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-15T10:46:45+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/3a725159d7e80f974f80dc2d8c6b6f994bdd5537"
+ },
+ {
+ "sha": "b16f741a9365b89c986061bb3a1e2241083e5afd",
+ "message": "remove logs",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-17T07:20:58+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/b16f741a9365b89c986061bb3a1e2241083e5afd"
+ },
+ {
+ "sha": "6d04d5f0ba42f1cbb1def79470519ccf16c9fdbf",
+ "message": "Merge branch 'main' into redsys-3ds",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-17T07:29:10+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/6d04d5f0ba42f1cbb1def79470519ccf16c9fdbf"
+ },
+ {
+ "sha": "7677864179860f7c5c29ff2f9a686615c4213d3a",
+ "message": "resolve comments",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-18T12:44:56+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/7677864179860f7c5c29ff2f9a686615c4213d3a"
+ },
+ {
+ "sha": "1a17b3930a2a1d242d5fab09f5ac68513a68521f",
+ "message": "fix state mapping function",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T03:17:07+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/1a17b3930a2a1d242d5fab09f5ac68513a68521f"
+ },
+ {
+ "sha": "096925b2f296a0d7e48a9dc0c2891ec6e3b5cfb3",
+ "message": "remove crypto lib from cargo toml",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T03:23:27+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/096925b2f296a0d7e48a9dc0c2891ec6e3b5cfb3"
+ },
+ {
+ "sha": "0aa5b0843cfdb295b63c66661c14d4ea6d3ad762",
+ "message": "Merge branch 'main' into redsys-3ds",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T03:26:31+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/0aa5b0843cfdb295b63c66661c14d4ea6d3ad762"
+ },
+ {
+ "sha": "027b25d2477acc43a28c9f42021a5ea6ae21bc05",
+ "message": "fix merge conflict",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T03:36:18+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/027b25d2477acc43a28c9f42021a5ea6ae21bc05"
+ },
+ {
+ "sha": "b1697c95b9ad04f48ddb3c7348a494813c1fd31d",
+ "message": "add required fields",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T03:44:32+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/b1697c95b9ad04f48ddb3c7348a494813c1fd31d"
+ },
+ {
+ "sha": "a34224aeb9bdc5f290b4b2b2d850a2f7c902d712",
+ "message": "fix clippy and generate openapi_spec",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T03:58:30+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/a34224aeb9bdc5f290b4b2b2d850a2f7c902d712"
+ },
+ {
+ "sha": "8f0219b6ea77c86d364efb6ac45bb5cde55f66ba",
+ "message": "fix formatting",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T04:01:12+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/8f0219b6ea77c86d364efb6ac45bb5cde55f66ba"
+ },
+ {
+ "sha": "d54190cbbd5a3c6849fc4efd2929e8168ac6ac0f",
+ "message": "remove clave",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T04:31:29+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/d54190cbbd5a3c6849fc4efd2929e8168ac6ac0f"
+ },
+ {
+ "sha": "2ddc5a24a19869718d86964cf9c689c24bc73b18",
+ "message": "fix spell check",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T06:40:32+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/2ddc5a24a19869718d86964cf9c689c24bc73b18"
+ },
+ {
+ "sha": "9768c4c03e582dbc81da09e2f37670cf956e6c5e",
+ "message": "try fixing wasm build failure",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T07:11:59+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/9768c4c03e582dbc81da09e2f37670cf956e6c5e"
+ },
+ {
+ "sha": "2fa5b93e731e0415b32fcba9bbc2c9ac9abe4340",
+ "message": "try fixing wsam build",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T07:43:15+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/2fa5b93e731e0415b32fcba9bbc2c9ac9abe4340"
+ },
+ {
+ "sha": "7cc2934d8c9842db7b9452fdf5ce4be5392bd1c4",
+ "message": "fix wasm build",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T08:04:05+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/7cc2934d8c9842db7b9452fdf5ce4be5392bd1c4"
+ },
+ {
+ "sha": "7cad37c99780eb5394a7f746b36f9bc939160d76",
+ "message": "fix clippy error",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T08:11:31+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/7cad37c99780eb5394a7f746b36f9bc939160d76"
+ },
+ {
+ "sha": "4f19b6ac31326a754084c85712a2377827b53eb0",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-19T08:13:38+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/4f19b6ac31326a754084c85712a2377827b53eb0"
+ },
+ {
+ "sha": "a52b4d11a1dc4120c82da409a1e5779ff51bac46",
+ "message": "fix clippy error",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T08:46:46+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/a52b4d11a1dc4120c82da409a1e5779ff51bac46"
+ },
+ {
+ "sha": "680a6375ce47d0a17421a9a3fcb4adf553feba05",
+ "message": "remove next_action_url",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T09:18:31+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/680a6375ce47d0a17421a9a3fcb4adf553feba05"
+ },
+ {
+ "sha": "8a1915ae5e40b881dda9033b387ea2d482b535e9",
+ "message": "update toml files",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T09:32:00+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/8a1915ae5e40b881dda9033b387ea2d482b535e9"
+ },
+ {
+ "sha": "152c5b7fb0558a822432a48fd6a8252864e375b7",
+ "message": "rename openssl flag",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T14:35:21+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/152c5b7fb0558a822432a48fd6a8252864e375b7"
+ },
+ {
+ "sha": "a5a023ad1fcce0afbb6c4b3a1f693263cbad5de0",
+ "message": "undo commit",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T14:35:33+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/a5a023ad1fcce0afbb6c4b3a1f693263cbad5de0"
+ },
+ {
+ "sha": "deea2d61f7736c582d7fe860ccfc809161dc9f17",
+ "message": "add redsys cypress testcases",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T15:52:36+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/deea2d61f7736c582d7fe860ccfc809161dc9f17"
+ },
+ {
+ "sha": "35b696f49fdf1410edc1e350bdbee2f9cc3f2066",
+ "message": "trim base_url",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T16:22:27+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/35b696f49fdf1410edc1e350bdbee2f9cc3f2066"
+ },
+ {
+ "sha": "975e2d4792aec66af1a145972f6ddb9cc5cb105d",
+ "message": "remove comments",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T16:34:15+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/975e2d4792aec66af1a145972f6ddb9cc5cb105d"
+ },
+ {
+ "sha": "e7bdb1266c932f0a004b6eb0f9419d7ac6d4cdc7",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-19T16:35:33+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/e7bdb1266c932f0a004b6eb0f9419d7ac6d4cdc7"
+ },
+ {
+ "sha": "f71fdeb8bc3359aea61987ff4d6cc4a01400af4c",
+ "message": "undo debugger changes",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-19T16:55:58+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/f71fdeb8bc3359aea61987ff4d6cc4a01400af4c"
+ },
+ {
+ "sha": "4a94ee11d5c5b72c9f8b74d6cc97fcefbe59b67f",
+ "message": "chore(cypress): run formatter and address lints",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-19T16:57:03+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/4a94ee11d5c5b72c9f8b74d6cc97fcefbe59b67f"
+ },
+ {
+ "sha": "81cf9b29595b0509e8e03187314938b31fe92756",
+ "message": "Merge main",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T11:51:13+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/81cf9b29595b0509e8e03187314938b31fe92756"
+ },
+ {
+ "sha": "df60cd4bf28a4487e1373aea4524673043ffa211",
+ "message": "add a comment and remove redundant error message",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T12:23:10+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/df60cd4bf28a4487e1373aea4524673043ffa211"
+ },
+ {
+ "sha": "76d87b58900a86848a36d032bfd0a1526cf0f96b",
+ "message": "fix;",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T12:54:02+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/76d87b58900a86848a36d032bfd0a1526cf0f96b"
+ },
+ {
+ "sha": "7379af26500dd5c85105f68bc8c01b00777821be",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-20T12:54:56+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/7379af26500dd5c85105f68bc8c01b00777821be"
+ },
+ {
+ "sha": "a2db191313d498a18d35226af4e6515384e02f43",
+ "message": "docs(openapi): re-generate OpenAPI specification",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-20T13:01:21+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/a2db191313d498a18d35226af4e6515384e02f43"
+ },
+ {
+ "sha": "56d7da547d714a6f480f0f813f644b40fa0c7cf2",
+ "message": "resolve comment",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T18:26:08+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/56d7da547d714a6f480f0f813f644b40fa0c7cf2"
+ },
+ {
+ "sha": "bfb5e5d33696f0838cc20b5e0bdbb8e3ca898966",
+ "message": "chore: run formatter",
+ "author": "hyperswitch-bot[bot]",
+ "date": "2025-03-20T18:27:11+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/bfb5e5d33696f0838cc20b5e0bdbb8e3ca898966"
+ },
+ {
+ "sha": "86de8c1ad5825a35fceb5c3224de5b53179f5188",
+ "message": "remove signals flag",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T18:40:51+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/86de8c1ad5825a35fceb5c3224de5b53179f5188"
+ },
+ {
+ "sha": "e4353e688364782be6024a1ff1ef72e83de947aa",
+ "message": "add doc comment for normalize_string()",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T19:22:13+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/e4353e688364782be6024a1ff1ef72e83de947aa"
+ },
+ {
+ "sha": "d56b06dd7403b49e15e1de8d71ad1702114a0c99",
+ "message": "refactor normalize string",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T23:34:25+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/d56b06dd7403b49e15e1de8d71ad1702114a0c99"
+ },
+ {
+ "sha": "96ae608d5f5b94acfd813a6cadd7e25967d85afc",
+ "message": "fix clippy error",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-20T23:57:43+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/96ae608d5f5b94acfd813a6cadd7e25967d85afc"
+ },
+ {
+ "sha": "d2a6dddd5d77db54539245bd9a528f0618f2ef8c",
+ "message": "Merge branch 'main' into redsys-3ds",
+ "author": "AkshayaFoiger",
+ "date": "2025-03-21T06:38:18+00:00",
+ "url": "https://github.com/juspay/hyperswitch/commit/d2a6dddd5d77db54539245bd9a528f0618f2ef8c"
+ }
+ ]
+}
\ No newline at end of file