OrderPaymentResult

Event Type: order_payment_result

  • order_id[* String]: Order ID
  • payment_id[* String]: Payment Serial Number
  • payment_result[* Object PaymentResult]: Payment Result
    • is_payment_success[* Boolean]: Payment is Successful or not, enumeration
      • true
      • false
    • payment_message[String]: Payment Result message
    • is_3ds_used[Boolean]: 3DS is used or not, enumeration
      • true
      • false
    • response_by_3ds[Object 3DSResponse]: 3DS Response Result
      • eci_value[* String]: ECI, example: 00、01、02、04、05、06、07
      • version[* String]: Version, example: 1.0.2、2.2.0
      • authentication_type[* String]: Authentication Type, example: static、dynamic、oob、decoupled
      • trans_status[* String]: 3DS Trans Status, example: A、C、D、I、N、R、U、Y
    • response_by_avs[String]: AVS Response Result
    • response_by_cvc[String]: CVC Response Result
{
    "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": ""
    }
}