Skip to content

半流程撞库返 - 进件接口

接口信息

  • 接口地址POST /api/platform/apply
  • 接口说明:半流程撞库返中,渠道合作方在收到万利通授权完成通知后,调用此接口提交用户完整信息

请求参数

参数类型必填说明
channelCodeString渠道编码
dataStringAES 加密后的 JSON 字符串

说明:

  • 平台当前实际强校验的外层字段为:channelCodedata
  • data 内当前实际强校验的关键字段为:applyNomobilePhone
  • 其余字段建议按下方平台标准完整传递,便于平台完成进件处理和后续状态流转

data 明文字段

参数类型必填说明
applyNoString撞库接口返回的申请单号
mobilePhoneString明文手机号
cnNameString用户姓名
sexString性别
cityString城市名称
idNumberString身份证号
ageInteger年龄
educationInteger学历
houseInteger房产
vehicleInteger车辆
overdueInteger逾期情况
creditCardInteger信用卡
insuranceInteger保险
jobInteger职业
monthIncomeString月收入
gongjijinInteger公积金
shebaoInteger社保
zhimaInteger芝麻分等级,详见参数字典
weilidaiInteger微粒贷
jingdongInteger京东白条
huabeiInteger花呗
licenseTimeInteger营业执照时长(月)
amountInteger贷款金额(元)
loanTimeInteger贷款期限
loanForInteger贷款用途
salaryPayInteger工资发放
ipString用户IP

响应参数

参数类型说明
codeInteger0-成功,其他-失败
msgString响应消息
dataObject响应数据

请求示例

data 明文示例

json
{
  "applyNo": "PLT20260316123456789",
  "mobilePhone": "13812341234",
  "cnName": "张三",
  "sex": "1",
  "city": "成都市",
  "idNumber": "510100199001011234",
  "age": 34,
  "education": 5,
  "house": 1,
  "vehicle": 2,
  "overdue": 0,
  "creditCard": 1,
  "insurance": 2,
  "job": 0,
  "monthIncome": "2",
  "gongjijin": 2,
  "shebao": 2,
  "zhima": 1,
  "weilidai": 1,
  "jingdong": 1,
  "huabei": 1,
  "amount": 50000,
  "loanTime": 2,
  "loanFor": 1,
  "salaryPay": 0,
  "ip": "114.114.114.114"
}

加密后请求

json
{
  "channelCode": "CH001",
  "data": "Base64(AES加密后的上述JSON)"
}

响应示例

json
{
  "code": 0,
  "msg": "",
  "data": {
    "applyNo": "PLT20260316123456789",
    "url": "https://institution.example.com/apply-success"
  }
}

注意事项

  1. applyNo 必须是撞库接口返回的单号
  2. 手机号必须是明文完整号码
  3. 仅适用于半流程撞库返
  4. 建议在收到万利通授权回调后再调用此接口
  5. applyNo 有效期以双方联调约定为准
  6. 同一个 applyNo 只能进件一次