OrderChargeback

Event Type: order_chargeback

  • order_id[* String]: Order ID
  • payment_id[* String]: Payment Serial Number
  • chargeback_result[* Object ChargebackResult]: Chargeback Result
    • chargeback_amount[* Object Amount]: Chargeback Amount
      • currency[* String]: Local Currency Type, 3-letter code according to ISO 4217
      • amount_local[* Double]: Amount ( Local Currency )
      • amount_usd[Double]: Amount ( USD ), The USD amount is converted from the original amount by the exchange rate, (required when not access to China Server)
      • amount_cny[Double]: Amount ( CNY ), The CNY amount is converted from the original amount by the exchange rate, (required when accessing a China Server)
    • chargeback_reason[* String]: Chargeback Reason
    • chargeback_process[* String]: Chargeback Process, example: need_response
{
    "order_id": "NX348566DIHD",
    "payment_id": "NHF8736274",
    "chargeback_result": {
        "chargeback_amount": {
            "currency": "USD",
            "amount_local": 68,
            "amount_usd": 10,
            "amount_cny": 68
        },
        "chargeback_reason": "XXX",
        "chargeback_process": "need_response"
    }
}