[TOC]
简要描述
版本记录
变更日期 |
版本编号 |
修改说明 |
变更人 |
2022-11-2 |
v1.1 |
创建移库接口文档 |
兰兰 |
请求URL
- 测试环境
https://gaapi.dixingps.cn/web/gaib/api/transfer
请求方式
请求头
参数名 |
必选 |
说明 |
Authorization |
是 |
Bearer a7fe162f-2b74-4800-9516-ca8b4567a422 |
请求参数
参数名 |
必选 |
类型 |
说明 |
list |
是 |
array |
列表 |
list参数
参数名 |
必选 |
类型 |
说明 |
chassis |
是 |
String |
车架号 |
shopCode |
否 |
String |
店号 |
shopName |
否 |
String |
店名 |
financialId |
否 |
String |
金融机构 |
status |
是 |
String |
状态 02、在库,10、在库(二网) |
transDate |
否 |
String |
通知日期(移库日期) |
请求示例
{
"list":[
{
"shopCode": "34A10",
"shopName":"测试店铺34A10",
"financialId": "1",
"chassis": "LVGBT74K0JG016080",
"status":"02",
"transDate":"2022-11-02"
},
{
"shopCode": "1",
"shopName":"测试店铺1",
"financialId": "1",
"chassis": "LVGBT74K0JG016080",
"status":"10",
"transDate":"2022-11-02"
}
]
}
返回参数说明
参数名 |
类型 |
说明 |
success |
boolean |
是否成功 |
data |
string |
成功返回值 |
message |
string |
失败说明 |
code |
int |
状态码 |
成功返回示例
{
"success": true,
"data": "操作成功",
"message": null,
"code": 200,
"includes": null,
"excludes": null,
"onlyData": false,
"callback": null
}
失败返回示例
{
"success": false,
"data": null,
"message": "接口尚未开发",
"code": 500,
"includes": null,
"excludes": null,
"onlyData": false,
"callback": null
}
备注