Skip to content

feat(authentication): added authentication sync api #8596

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 64 commits into
base: main
Choose a base branch
from

Conversation

sahkal
Copy link
Contributor

@sahkal sahkal commented Jul 10, 2025

Type of Change

  • New feature

Description

The main feature is the addition of a new authentication synchronization API that allows syncing authentication data between systems.

API Contract Changes

  • Updated OpenAPI specifications (v1 and v2)
  • Added new authentication endpoints and data models
  • Modified existing API contracts to support the new sync functionality

Files Modified

Core Authentication Logic

  • crates/router/src/core/unified_authentication_service.rs - Main authentication service logic
  • crates/router/src/core/authentication/utils.rs - Authentication utilities
  • crates/router/src/services/authentication.rs - Authentication services

API Models & Routes

  • crates/api_models/src/authentication.rs - Authentication API models
  • crates/router/src/routes/authentication.rs - Authentication route handlers
  • crates/router/src/routes/app.rs - App routing configuration
  • crates/router/src/routes/lock_utils.rs - Lock utilities for routes

Domain Models

  • crates/hyperswitch_domain_models/src/authentication.rs - Authentication domain models
  • crates/hyperswitch_domain_models/src/router_request_types/unified_authentication_service.rs - Request types for unified auth service

Connector Integration

  • crates/hyperswitch_connectors/src/connectors/unified_authentication_service.rs - Unified auth service connector
  • crates/hyperswitch_connectors/src/connectors/unified_authentication_service/transformers.rs - Data transformers
  • crates/hyperswitch_connectors/src/connectors/netcetera/transformers.rs - Netcetera connector transformers

Configuration & Documentation

  • config/development.toml - Development configuration updates
  • api-reference/v1/openapi_spec_v1.json - Updated OpenAPI v1 specification
  • api-reference/v2/openapi_spec_v2.json - Updated OpenAPI v2 specification

Technical Implementation Details

Integration Points

  • Unified Authentication Service integration
  • Netcetera connector enhancements
  • Business profile integration with merchant country code
  • SDK information handling improvements

How did you test it?

Try the flow with both Friction and Frictionless card

Setup Netcetera in MCA :

curl --location 'http://localhost:8080/account/sahkal11/connectors' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'api-key: dev_xekWBE7fjlTQ4d4fsmYBqgoNyBdfLaZxggJ6nY4tL2Eyl0Ece6lGGH1o7N4ZtrE3' \
--data '
{
    "connector_type": "authentication_processor",
    "connector_name": "netcetera",
    "connector_account_details": {
            "auth_type": "CertificateAuth",
            "certificate": CERTIFICATE,
            "private_key": PRIVATE_KEY
        },
    "test_mode": true,
    "disabled": false,
    "metadata": {
        "merchant_category_code": "5411",
        "merchant_country_code": "840",
        "merchant_name": "Dummy Merchant",
        "endpoint_prefix": "flowbird",
        "three_ds_requestor_name": "juspay-prev",
        "three_ds_requestor_id": "juspay-prev",
        "pull_mechanism_for_external_3ds_enabled": false
    }
}
'

Setup Profile acquirer Config

curl --location 'localhost:8080/profile_acquirer' \
--header 'Content-Type: application/json' \
--header 'api-key: dev_xekWBE7fjlTQ4d4fsmYBqgoNyBdfLaZxggJ6nY4tL2Eyl0Ece6lGGH1o7N4ZtrE3' \
--data '{
  "acquirer_assigned_merchant_id": "00002000000",
  "merchant_name": "Demo Merchant",
  "network": "AmericanExpress",
  "acquirer_bin": "400000",
  "acquirer_fraud_rate": 0.2345545234765,
  "profile_id": "pro_89fr3mDlSeDfh8fro28W"
}'

Update Business Profile

curl --location 'http://localhost:8080/account/sahkal11/business_profile/pro_89fr3mDlSeDfh8fro28W' \
--header 'Content-Type: application/json' \
--header 'api-key: dev_xekWBE7fjlTQ4d4fsmYBqgoNyBdfLaZxggJ6nY4tL2Eyl0Ece6lGGH1o7N4ZtrE3' \
--data '
{
    "authentication_connector_details": {
        "authentication_connectors": ["netcetera"],
        "three_ds_requestor_url": "https://google.com"
    },
    "merchant_country_code": "004",
    "merchant_category_code": "5411"
}
'

Do Authentication Create :

curl --location 'localhost:8080/authentication' \
--header 'Content-Type: application/json' \
--header 'api-key: dev_xekWBE7fjlTQ4d4fsmYBqgoNyBdfLaZxggJ6nY4tL2Eyl0Ece6lGGH1o7N4ZtrE3' \
--data '{
    "amount": 10,
    "currency": "USD",
    "acquirer_details": {
        "merchant_id": "12134",
        "bin": "438309",
        "country_code": null
    },
    "authentication_connector":"netcetera",
    "profile_acquirer_id": "pro_acq_JO8uZghB4Y6qJFAgkUbI"
}'

Do Authentication Eligibility

curl --location 'localhost:8080/authentication/authn_G2nUqHYBrMLIMgcyO8Az/eligibility' \
--header 'Content-Type: application/json' \
--header 'api-key: dev_xekWBE7fjlTQ4d4fsmYBqgoNyBdfLaZxggJ6nY4tL2Eyl0Ece6lGGH1o7N4ZtrE3' \
--data-raw '{
     "payment_method": "card",
    "payment_method_data": {
        "card": {  
            "card_number": CARD_NUMBER, 
            "card_exp_month": "10",
            "card_exp_year": "25",
            "card_holder_name": "joseph Doe",
            "card_cvc": "123"
        }
    },
    "billing": {
        "address": {
            "line1": "1467",
            "line2": "Harrison Street",
            "line3": "Harrison Street",
            "city": "San Fransico",
            "state": "CA",
            "zip": "94122",
            "country": "US",
            "first_name": "PiX"
        },
        "phone": {
            "number": "123456789",
            "country_code": "12"
        }
    },
    "shipping": {
        "address": {
            "line1": "1467",
            "line2": "Harrison Street",
            "line3": "Harrison Street",
            "city": "San Fransico",
            "state": "California",
            "zip": "94122",
            "country": "US",
            "first_name": "PiX"
        },
        "phone": {
            "number": "123456789",
            "country_code": "12"
        }
    },
    "email": "[email protected]",
    "browser_information": {
        "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",
        "accept_header": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
        "language": "nl-NL",
        "color_depth": 24,
        "screen_height": 723,
        "screen_width": 1536,
        "time_zone": 0,
        "java_enabled": true,
        "java_script_enabled": true,
        "ip_address": "115.99.183.2"
    },
    "profile_acquirer_id": "pro_acq_LhAY1jDOAYJuHeUAQWwh"
}'

RESPONSE

{
    "authentication_id": "authn_U4Z7xqe7HHIScfDU50xW",
    "next_api_action": {
        "url": "http://localhost:8080/authentication/authn_U4Z7xqe7HHIScfDU50xW/authenticate",
        "http_method": "POST"
    },
    "status": "pending",
    "eligibility_response_params": {
        "ThreeDsData": {
            "threeds_server_transaction_id": "ed790486-dda7-4972-83ab-5d0afbaa8885",
            "maximum_supported_3ds_version": "2.3.1",
            "connector_authentication_id": "ed790486-dda7-4972-83ab-5d0afbaa8885",
            "three_ds_method_data": "eyJ0aHJlZURTTWV0aG9kTm90aWZpY2F0aW9uVVJMIjoiaHR0cHM6Ly9leGFtcGxlLmNvbS8zZHMtbWV0aG9kLW5vdGlmaWNhdGlvbi11cmwiLCJ0aHJlZURTU2VydmVyVHJhbnNJRCI6ImVkNzkwNDg2LWRkYTctNDk3Mi04M2FiLTVkMGFmYmFhODg4NSJ9",
            "three_ds_method_url": "https://ndm-prev.3dss-non-prod.cloud.netcetera.com/acs/3ds-method",
            "message_version": "2.3.1",
            "directory_server_id": "A000000003"
        }
    },
    "connector_metadata": null,
    "profile_id": "pro_To47L194jVTevrWXRxR3",
    "error_message": null,
    "error_code": null,
    "authentication_connector": "netcetera",
    "billing": {
        "address": {
            "city": "San Fransico",
            "country": "US",
            "line1": "1467",
            "line2": "Harrison Street",
            "line3": "Harrison Street",
            "zip": "94122",
            "state": "CA",
            "first_name": "PiX",
            "last_name": null
        },
        "phone": {
            "number": "123456789",
            "country_code": "12"
        },
        "email": null
    },
    "shipping": {
        "address": {
            "city": "San Fransico",
            "country": "US",
            "line1": "1467",
            "line2": "Harrison Street",
            "line3": "Harrison Street",
            "zip": "94122",
            "state": "California",
            "first_name": "PiX",
            "last_name": null
        },
        "phone": {
            "number": "123456789",
            "country_code": "12"
        },
        "email": null
    },
    "browser_information": {
        "color_depth": 24,
        "java_enabled": true,
        "java_script_enabled": true,
        "language": "nl-NL",
        "screen_height": 723,
        "screen_width": 1536,
        "time_zone": 0,
        "ip_address": "115.99.183.2",
        "accept_header": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
        "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",
        "os_type": null,
        "os_version": null,
        "device_model": null
    },
    "email": "[email protected]"
}

Authentication API

curl --location 'localhost:8080/authentication/authn_mZZSwXGzD20i4x41pjLp/authenticate' \
--header 'Content-Type: application/json' \
--header 'api-key: dev_MB8FHXAmDStuArWrRisGDRe6kadzIIxWgOI8Bk0uEHtIkU5WA2oxcBrvozEjjiP2' \
--data '
{
    
    "device_channel": "APP",
    "threeds_method_comp_ind": "N",
    "sdk_information": {
        "sdk_app_id": "4d017186-318a-42e0-99cd-203367af5aa1",
        "sdk_enc_data": "eyJhbGciOiJSU0EtT0FFUC0yNTYiLCJlbmMiOiJBMTI4Q0JDLUhTMjU2In0.AeiTEwYFYMBl68uRqI2ePfIYJ_xDjZDBjvD-2dS4vCKUCUz-Pab8OVf5DiA8LovnoMI8dVJbFCVfWEgSjb8S99rFkm_g-J3hnBdiWgr7inSoW9NCvHgKU9hrTkhWijOFXNWHtBO4ECYIQg93RCv3svVDGTBkx0CucxlzkZF0Ct4sknMH6p4BGdioet8P8PVZPQcpM_9bd8JSdK1V8sUPPneeyYqlJ3MEQdZSfggRixUvlxdVhxVLlFHLyhjqzN7MpFT3NWsIG7mikkkLjlDlAE29Qm8xLBxqgL8apq57IR8map7KqacT20Uxirstskrlh6nfAk8aqU_Eo78Gd6XZrQ.12WaY03igq7b8At8GXXM7g.qpqNbumX0rpW1WRB_tMOsfVOeYzz6LbJfLFgSH49yMVvfGha7hEYEy0_h5nbPkWA_S95SubmfxQeN9Ale6uPTT_-lfSb4DpHKTMaYx3pVZrYA2qtR-0Iuft-t-zerEfqrd87TaKZNPxGzvrt6tdSig4PmFpg07AqcwQGDVvkxja_wO7PgcvR6lmKAt73IMJYAVXxb6oW1nGREJtzK9rTob48qnMdAJmmB3-0DwCeb7zZaNLI8ngs7qMj740atmzfR-cLdQ3AHDMlv0n4C7INFaaIn3vsJ_UxFuGCTmrTBc-Fgx7F5uOUI3Sc8BehqWTWox1AJ-Qz-t_9I1SobTWWKQ0U-JpeNoloXDEAA3fFgd6acOToAzeTxQckymVGPIhy6-VLYf7d80prT9TzRgMGlUEj-nQjy8svqambWFHvueLZUh_YluyJlWX0R2_1GQKwIExiLoMXBr7dJhLslLBm9VLZKqEa6xGI8uTtO0KpN_FmFXKvBDBSPQ_WK8WpN9OLoElJbuveKwXhkMIDqYexxwOngyAApNjBoKom23r3a1zxWtZZNeD6Z7vPAirHRSN6-YdIJDym2LRopFRItm80oDUAOity5DeZMODTz0SdhNXfpsagsYktRmPXZ1WxKZf6yY9z_EGFYHZ4aYTsulPYuFMhp3Dc6CC-GiM2UdDbztcqoscVJpJLvCr4Yagg5xeEshr3K4F5FDUP1gtkEjQzRdHUTAFJQCKXb0Z6U9F40yiCr-E5SugBZDUk1iGrc72e0s-1xqAx89Q9N_T2j8ejc8M38AaDODnVM5h6E7vhSxilp4f--m_eSCCSyduNM2jE_MT1knfrh16JoE-DLaUr9zYgIN05WjmoT0OWL5ax3x98Y17_fxAxTKW9ZIfTYAG8bFWwlErXzjttZe3_Pe1ORpSKkl5hUWey9RGHk6WqUAZfdACzabJRTUCaC1g2t2KX6sQusFhdh8s-ArfStN7oJ-oO807Phlix2VNxKDiDpUKLaLBwQQV37jRJ2gMohsC-Wl5diOg81c9FPut9v7pTODd0AVEN-Y2CWFVyHdoYgc57MPFTJFkTFCX3j0w5ZZQO10aPyM0_gc9UOiPlPOIsXZdUbBxN_dCcq5xSQgl5rxaLO89444u3Nq3cTVlPu6Vkjardaj2Asz_tdmN6JKbCCHbVg8xUjdY8qbSn144WWc8s_oldaJhV-BlBNt5mFrkLVxy0msyDBRJQ5TK7Prck5Puz36RZ8I7VsTMcyE0q8tO5GXxLYyV-vnJb4IOyfEVBv-SB_g2auAMFB58lRh4lv80gIdRGZcY1sS9cuKeHboQGNSXYtGExPmmb-iV0UA34jNkert9p2-dxQLXfdYSlKXgly_L9qUQEM1kPdwWVin7nwqz4gtt-tnllcve2w2qd1XaY3BdtVkzpqrKQqq0UDz32NKBbSKhzQIfzXadWsjYYJ_bKWF2uKOM6es3Gd-BUP-FvjjHwZyQcQyMBENxAdQyXuicwKcgjFct5GQx2Zt2_K14O8b-y0_-p3n2EmYk7xUWo4JuD_IaOm3EoBo67TVS74F2Ef5mOIx6S8kaHV8N6L9OWJCvgFhkVDYkq6GhCOf5yRP8I-tm4xwwn0Wt60i9nCOvooPI36T-mU8TnKSVGtziKq9JTjLGpFf5jHxBBL97mEstpCONo2B8-U3_wUOkRJEzhAS7sKtvMCcsKzL4ak16GCKrznciiBYdCI6tIjnY0gl0IiFRy_9CNPRym6RTECnksaTjmZIJJgcn2jGP0gFF7BxE2lBVe-3Y5JOHW3ho-i6SEp7cEKVx2pTvc2CBwPoWTUkFlTTelH95tG5ftRpFOQmfrpzvjMW22UU9BFvuU3CBvb5fptq7iqdUm62DuKegEYPQrUq0_K0gwoP1fwdiWYLDI9vlpGTj57E6f8idPb1YunE1Urko9h0m4ye-xlMli6NobPGSX7PpkY4QwkFeAVBUifwy3oodYkiF0QUq2_mMdf2863MfUF8lkp6oVDiFgvy3hmD0EJajnq2KRMIlhOwIrVhSSEc2Oqpn6Fn6xJQcrm556tb6MNh5wpjCQWIc5lHXwANvLSZY70KhKaeM3fsKW5T2c16bQ1BrerrcLiYVYde7o-Zb1xXRyBoopiNvcDxBKcyFgRzaT7TkRjyx-TeZJMjPe-oEk25kJUAgFXpwNB7Ki9Qj2hsLLn_Yc8kUfr4YW_C-64PtDdhqaryHjIYOL5h6YWGizWzmgFKVytTfr2A1WeIdMDsA4IvpOtNZHUr0RR7NPQpwd_7sV3Eb5_utpQ2fnj-D5zdlqK1TODZoZEANFL7T_lwemRZdlhOGS9he19oU8djhaTPNBCvy64lyS3rOaNy_JtgQhS17RKWyqC2YNyfO1G2SGXmO6CDti21TCtgIoh3YLe94RNNzLn2tSPxjI67JQ-5WaVBa1_910Jpy8zRhxo9QMtWzmN4HUoy6GAUPeaRJhtTc9pvMrKxl6WLLNJ4sivGdPR_D6j-wilx6ayQduC8D2NSHhgt2hxT6r_W_ILfQ9GAWc8pNAcn4EVEDf2EMriLveMcFBYOurO8wwndCtHPBlawN93-wNUy6PMh_7KN0Kq-L8pltjj41ymdWQIaph0qgWHTMaO0XAeJGYp9qWlNRX6p-PVJU7vTSV2pKJbl-Bnbw-dBUJXFb6SGrum28Un6bcx5e6cFUN--sZl7OLzLQgexy0CerypsgwTQ68oEDNYQjmRA-Zo5e7eW2srh-kV29TVjwMT49_krBR3ypCEV8gbvHumBLxXR4CiU_PMSSNi-lUt5_kQvMb7GfS_JYwdVRx93nku1RTToStIfoDKhE9VpsSp7GN2Z7Fy1k80d0pQ-d2SwBL3QXGtUVcwqoW4PbPDhwYhjpRAkhTNwO6cw9AgVYNE8--V79Ln6nEXKBBVUK3Coj01jm--G8vkWZZ6U-zt2QZVoJApKombi2TloXw3VohPODsR6UfYJkdpKjl1E_Q4VA1-aLUYDQ6xRlfYi0wSqvQDtKrwlGumIVn0qEjZFeupTtr9ux72i0T2sagb4oOi9FHwLaR7HfcgczCH5OokFv2IpEOV8k91Ucg78KAynqce-l522tCHu3flWelXv2feS7eSqNax9kjBs-rEsxLQtDffccY5L5Zvr90gKaWGAa4z9sqb9QKmOulFGcPLquQZF51VrX-5wFoAQ15xbpYxjX5Ks1i9hwExvyLIW-n4xyxC64n7tHpqDTsnxXu_VHvkyNbF9eXeDT7vhG85zhoi9ULHtRsbJilnlPMZNQcO-cBboVl1sR4_8_t2sCoNjtMGGbnsYintgPfUAGPLfLnddqC8LFIKH0ZN22-cPCthUGFpKNuau9RCaquz7cHjsGkp9yJKVXWlSxfr6WIjGHEe8hi1dnr83rkfcxTzcaxvCaQy6clUQjqyWOV4l-TuAtplv12NQX-mxN2E5cJmFY1wnyJ5GPu9VtYq2xbTw3-xoU8ikgw9XkI7HML2z0HpXi0k5QZJ9QJPXuP3273FjZSOQGyj2qJ3zRGAWJEJdKpMkP4gsxLuPm_mtzSYMj6HxwHjvMB1Yqd9iVUkXQgdRU_kRROK3anyKeetezft1-G4E_ScUNONODn",
        "sdk_ephem_pub_key": {
            "kty": "EC",
            "x": "AIKHXxBSZ9t7wzeiZ9ZpsCjL84btRwXfMM3mtqaQjJw",
            "y": "6lY5bSlSsx40gUPGKRXBcL05v_rQncf6k0qmLc4V8Qs",
            "crv": "P-256"
        },
        "sdk_trans_id": "705d277d-e11e-4518-9cf2-88e35fccf8b3",
        "sdk_reference_number": "3DS_LOA_SDK_NEAG_020301_00792",
        "sdk_max_timeout": 15
    }
}
'

Response

{
    "trans_status": "C",
    "acs_url": null,
    "challenge_request": null,
    "acs_reference_number": "3DS_LOA_ACS_201_13579",
    "acs_trans_id": "3ed60678-2116-4b3d-ba8b-fea3368694ee",
    "three_dsserver_trans_id": "e2f6ac79-b9ef-49a1-999a-2f3d998300db",
    "acs_signed_content": null,
    "three_ds_requestor_url": "https://google.com",
    "three_ds_requestor_app_url": null,
    "error_message": null,
    "error_code": null,
    "authentication_value": null,
    "status": "pending",
    "authentication_connector": "netcetera"
}

Sync

curl --location --request POST 'localhost:8080/authentication/authn_xfnVvnZIWfGMaHrwEBGJ/sync' \
--header 'api-key: dev_5oijCvZhFkoyZWkDFaLPGeN9kajUAt03yG6Aju1DSh79ghiT8i8moIEsjRxVf6Tq' \
--data ''

Response

{
    "authentication_id": "authn_xfnVvnZIWfGMaHrwEBGJ",
    "merchant_id": "sahkal11",
    "status": "success",
    "client_secret": "authn_xfnVvnZIWfGMaHrwEBGJ_secret_b1iIylqBuPVUBw1EYibA",
    "amount": 10,
    "currency": "USD",
    "authentication_connector": "netcetera",
    "force_3ds_challenge": false,
    "return_url": null,
    "created_at": "2025-07-26T11:30:13.974Z",
    "profile_id": "pro_BEX6ZBeTBuJq3TxXrjwz",
    "psd2_sca_exemption_type": null,
    "acquirer_details": {
        "bin": "400000",
        "merchant_id": "00002000000",
        "country_code": "004"
    },
    "threeds_server_transaction_id": "23be8c88-8dee-4279-94c0-7c7a7148ad74",
    "maximum_supported_3ds_version": "2.3.1",
    "connector_authentication_id": "23be8c88-8dee-4279-94c0-7c7a7148ad74",
    "three_ds_method_data": "eyJ0aHJlZURTTWV0aG9kTm90aWZpY2F0aW9uVVJMIjoiaHR0cHM6Ly9leGFtcGxlLmNvbS8zZHMtbWV0aG9kLW5vdGlmaWNhdGlvbi11cmwiLCJ0aHJlZURTU2VydmVyVHJhbnNJRCI6IjIzYmU4Yzg4LThkZWUtNDI3OS05NGMwLTdjN2E3MTQ4YWQ3NCJ9",
    "three_ds_method_url": "https://ndm-prev.3dss-non-prod.cloud.netcetera.com/acs/3ds-method",
    "message_version": "2.3.1",
    "connector_metadata": null,
    "directory_server_id": "A000000003",
    "billing": {
        "address": {
            "city": "San Fransico",
            "country": "US",
            "line1": "1467",
            "line2": "Harrison Street",
            "line3": "Harrison Street",
            "zip": "94122",
            "state": "CA",
            "first_name": "PiX",
            "last_name": null
        },
        "phone": {
            "number": "123456789",
            "country_code": "12"
        },
        "email": null
    },
    "shipping": {
        "address": {
            "city": "San Fransico",
            "country": "US",
            "line1": "1467",
            "line2": "Harrison Street",
            "line3": "Harrison Street",
            "zip": "94122",
            "state": "California",
            "first_name": "PiX",
            "last_name": null
        },
        "phone": {
            "number": "123456789",
            "country_code": "12"
        },
        "email": null
    },
    "browser_information": {
        "color_depth": 24,
        "java_enabled": true,
        "java_script_enabled": true,
        "language": "nl-NL",
        "screen_height": 723,
        "screen_width": 1536,
        "time_zone": 0,
        "ip_address": "115.99.183.2",
        "accept_header": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
        "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",
        "os_type": null,
        "os_version": null,
        "device_model": null
    },
    "email": "[email protected]",
    "trans_status": "Y",
    "acs_url": null,
    "challenge_request": null,
    "acs_reference_number": null,
    "acs_trans_id": null,
    "three_dsserver_trans_id": "23be8c88-8dee-4279-94c0-7c7a7148ad74",
    "acs_signed_content": null,
    "three_ds_requestor_url": "https://google.com",
    "three_ds_requestor_app_url": null,
    "authentication_value": "MTIzNDU2Nzg5MDA5ODc2NTQzMjE=",
    "error_message": null,
    "error_code": null,
    "profile_acquirer_id": "pro_acq_ebY2fZAOqqjMAikwIMqH"
}

Checklist

  • I formatted the code cargo +nightly fmt --all
  • I addressed lints thrown by cargo clippy
  • I reviewed the submitted code
  • I added unit tests for my changes where possible

sahkal and others added 30 commits May 20, 2025 17:28
…y/hyperswitch into 9455-add-authentication-create-api
…y/hyperswitch into 9948-flatten-existing-core-authentication-function-to-remove-out-of-payments-context
Copy link

semanticdiff-com bot commented Jul 10, 2025

@sahkal sahkal marked this pull request as ready for review July 14, 2025 10:24
@sahkal sahkal requested review from a team as code owners July 14, 2025 10:24
@sahkal sahkal self-assigned this Jul 14, 2025
Base automatically changed from 9945-add-authentication----authenticate-api to main July 25, 2025 09:47
@sahkal sahkal requested a review from a team as a code owner July 25, 2025 09:47
@hyperswitch-bot hyperswitch-bot bot added M-database-changes Metadata: This PR involves database schema changes M-api-contract-changes Metadata: This PR involves API contract changes labels Jul 25, 2025
@sahkal sahkal added the C-feature Category: Feature request or enhancement label Jul 26, 2025
@sahkal sahkal added this to the July 2025 Release milestone Jul 26, 2025
@sahkal sahkal changed the title added authentication sync api feat(authentication): added authentication sync api Jul 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-feature Category: Feature request or enhancement M-api-contract-changes Metadata: This PR involves API contract changes M-database-changes Metadata: This PR involves database schema changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant