South Korean Cards

自 1960 年以来,信用卡一直是韩国最主要的支付方式之一,至今仍是首选支付方式,占在线电子商务支付量的 50% 以上。在一个 95% 的人口持有银行账户、信用卡普及率超过 60% 的国家,使用韩国卡支付可以让您接触到超过 5,000 万的人口。


支付方式属性

字段名称内容
可用国家代码韩国(KR)
消费者货币KRW
处理货币KRW
结算货币美元 (USD)
类型 I信用卡(cards)
类型 IIkoreacardsht
退款支持退款
拒付
集成类型异步

交易流程

  1. 消费者在商家的结账页面选择South Korean Credit Card付款。
  2. 跳转支付信息页。
  3. 消费者进行付款。
  4. 消费者完成交易。
  5. 消费者被重定向对应页面。

集成

请求参数说明:

参数名类型必填说明
referenceString订单唯一标识
amountObject订单金额信息
├── currencyString货币类型(如 JPY)
├── valueNumber金额数值,单位为最小货币单位
productDetailString订单描述
countryCodeString国家代码(如 JP)
originString订单来源,如商城域名
paymentMethodObject支付方式信息
├── shopperEmailString付款人邮箱
├── typeString支付方式(如 koreacardsht)
├── holderNameString姓名
returnUrlString支付完成后返回的 URL
shopperReferenceString付款人唯一标识

交易调用输入示例

{
    "amount": {
        "currency": "KRW",
        "value": 1000
    },
    "countryCode": "KR",
    "origin": "fffmall.com",
    "paymentMethod": {
        "shopperEmail": "[email protected]",
        "holderName": "JW L",
        "type": "koreacardsht"
       
    },
    "productDetail": "ljwtest",
    "productName": "WEWQ",
    "reference": "ljw1769658309659",
    "returnUrl": "https://www.baidu.com/",
    "shopperReference": "LLL3211321",
    "webhookUrl": "https://develop.futureshop.global/api/checkout/payment/123"
}

响应参数说明

参数名类型必填说明
codeString响应状态码,"0" 表示成功
msgString响应消息
serverTimeNumber服务器时间戳,单位毫秒
dataObject业务数据对象
├── actionObject支付跳转相关信息
│ ├── paymentMethodTypeString支付方式类型(如 koreacardsht)
│ ├── urlStringWeb 端支付 URL
│ ├── methodString请求方法(如 Get)
│ ├── typeString操作类型(如 redirect)
├── amountObject订单金额信息
│ ├── currencyString货币类型(如 HKD, USD)
│ ├── valueNumber金额数值,单位为最小货币单位
├── merchantReferenceString商户订单号
├── pspReferenceString支付平台交易号
├── resultCodeString支付结果状态(如 PENDING)
successBoolean是否成功(true 表示成功)

交易调用输出示例

{
    "code": "0",
    "msg": "success",
    "serverTime": 1769667468756,
    "data": {
        "action": {
            "paymentMethodType": "koreacardsht",
            "url": "https://checkout-v2.futurepay-develop.com/instant-transfer?account=@CBB5CCZLV&expires=2026-01-29T06:22:44Z&reference=ljw1769666933255",
            "method": "Get",
            "type": "redirect"
        },
        "amount": {
            "currency": "KRW",
            "value": 1000
        },
        "merchantReference": "ljw1769666933255",
        "pspReference": "2016755419711668224",
        "resultCode": "PENDING",
        "providerReference": "mm_sU33jQHjcgCwDq"
    },
    "success": true
}

附加信息