- 客户订单接口
- 客户基础信息接口
- 承运商接口
- 附录
- 设备接口
产品体积重量同步接口
开发中
POST
请求参数
Body 参数application/json
createBy
string
客户标识
dataSource
string
来源系统
sign
string
签名
timestamp
string
时间戳
request
object
必需
productList
array [object {3}]
必需
示例
{
"createBy": "string",
"dataSource": "string",
"sign": "string",
"timestamp": "string",
"request": {
"productList": [
{
"customerProductCode": "string",
"roughWeight": null,
"vol": null
}
]
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '' \
--header 'Content-Type: application/json' \
--data-raw '{
"createBy": "string",
"dataSource": "string",
"sign": "string",
"timestamp": "string",
"request": {
"productList": [
{
"customerProductCode": "string",
"roughWeight": null,
"vol": null
}
]
}
}'
返回响应
🟢200响应
application/json
Body
code
integer
响应码
message
string
错误说明
flag
boolean
响应标识
value
object
响应内容
示例
{
"code": 200,
"message": "响应成功",
"flag": true
}