跳到主要内容

接口地址

POST /dispute-api/v1/list

请求参数

参数名类型必填长度说明
from_created_atstring25创建开始时间,UTC+8,格式:2026-04-02T16:28:09+08:00
to_created_atstring25创建结束时间,UTC+8,格式:2026-04-02T16:28:09+08:00
typestring50争议类型:dispute(争议)/ disputes-period(宽限期)
pagestring5查询页码,默认 1
limitstring3每页笔数,可传 10/50/100,默认 10

响应参数

一级字段二级字段三级字段四级字段类型说明
codestring接口结果代码,200/400/500
msgstring结果说明,如 PARAM_ERROR
dataobject数据对象
listsArray争议列表
terminalstring终端号
currencystring交易币种
amountstring交易金额
methodsstring支付方式
payment_idstring支付 ID
merchant节点
order_idstring返回该笔订单的商家订单号
statusstring处理状态:
  • pending(未处理)
  • close(已处理)
  • noaction(无需处理)
disputesobject节点
disputes_idstringDispute ID
disputes_typestring争议类型:
  • dispute = 争议
  • disputes-period = 宽限期
disputes_reasonstring原因:
  • goods_not_received: 服务未提供或未收到商品
  • return: 退款/退货
  • incorrect_invoice: 已取消的商品/服务
  • already_paid:重复交易
  • faulty-goods: 货不对版/货物损坏
  • pandemic_impact: 受新冠疫情影响
  • unauthorized_purchase: 未授权交易
disputes_referencestring参考编号
disputes_amountstring争议金额
disputes_currencystring争议币种
disputes_timesstring争议次数
disputes_period_fromstring宽限期开始时间,转为时间戳,UTC+8 格式为2026-04-02T16:28:09+08:00
disputes_period_tostring宽限期结束时间,转为时间戳,UTC+8 格式为2026-04-02T16:28:09+08:00
disputes_datestring争议时间,转为时间戳,UTC+8 格式为2026-04-02T16:28:09+08:00
disputes_commentstring争议描述
disputes_comments_historystring争议描述记录
disputes_reply_deadlinestring回复截止时间,转为时间戳,UTC+8 格式为2026-04-02T16:28:09+08:00
disputes_appeal_statusstring申诉状态:
  • false: 否,未申诉
  • true: 是,争议申诉中
disputes_statusstring关闭状态:
  • open: Klarna处理中,Open
  • close: Klarna已关闭,Closed
result_codestring返回响应代码
result_messagestring返回说明
pagestring当前页数
total_countstring总条数
total_pagesstring总页数

disputes_reason 原因代码说明

Code说明
goods_not_received服务未提供或未收到商品
return退款/退货
incorrect_invoice已取消的商品/服务
already_paid重复交易
faulty-goods货不对版/货物损坏
pandemic_impact受新冠疫情影响
unauthorized_purchase未授权交易

status 处理状态判断逻辑

  • pending (Unprocessed): 争议状态为未处理且满足(首次争议 + 回复截止时间 > 当前时间)或(争议为多次争议)
  • close (Processed): 争议状态为已处理
  • noaction(No Action Required): 争议状态为无需处理,或满足(首次争议 + 回复截止时间 < 当前时间)