目录

接入规范

接收单笔对账结果


福佑发起线上单笔对账后接收客户返回的审核结果

GET/POST

api/finance/checkOrderRetCallBack

系统请求参数


参数名
中文参数名 类型 是否必填 描述
appKey 应用key string 客户提供的appKey
signStr 签名 string 客户提供的appKey和客户提供的appSecret加密生成
timeStamp 请求时间戳 long 单位:秒

业务请求参数


参数名 中文参数名 类型 是否必填 描述
thirdQuoteSn

三方单号

string
thirdType 运单来源 byte 中国物流:14
checkStatus 对账结果 byte 0:待对账, 1:对账成功, 2:对账失败, 3:对账中
comment 备注 string

返回参数


参数名
中文参数名 类型 是否必填 描述
code

返回码

string code = 0, 请求成功
code = 1, 失败,可再次发起调用
code = 8, 失败,
包括正在确认中已确认的数据
desc 描述 string

请求示例


{
  "thirdQuoteSn" : "896786", 
  "thirdType": 14 ,
  "checkStatus" : 1, 
  "comment" : "对账成功",
}

返回示例


{
  status" : {
    "desc" : "提交成功",
    "code" : 0
  }
}