订单支付结果

事件类别:order_payment_result

  • order_id[* String]:订单号
  • payment_id[* String]:支付流水号
  • payment_result[* Object PaymentResult]:支付结果
    • is_payment_success[* Boolean]:支付是否成功,枚举值
      • true:是
      • false:否
    • payment_message[String]:支付结果描述
    • is_3ds_used[Boolean]:是否使用 3DS,枚举值
      • true:是
      • false:否
    • response_by_3ds[Object 3DSResponse]:3DS 响应结果
      • eci_value[* String]:ECI,例如 00、01、02、04、05、06、07
      • version[* String]:版本,例如 1.0.2、2.2.0
      • authentication_type[* String]:身份验证类型,例如 static、dynamic、oob、decoupled
      • trans_status[* String]:3DS transStatus,例如 A、C、D、I、N、R、U、Y
    • response_by_avs[String]:AVS 响应结果
    • response_by_cvc[String]:CVC 响应结果
{
    "order_id": "NX348566DIHD",
    "payment_id": "NHF8736274",
    "payment_result": {
        "is_payment_success": true,
        "payment_message": "success",
        "is_3ds_used": false,
        "response_by_3ds": {
            "eci_value": "02",
            "version": "2.2.0",
            "authentication_type": "01",
            "trans_status": "Y"
        },
        "response_by_avs": "",
        "response_by_cvc": ""
    }
}