- 客户订单接口
- 客户基础信息接口
- 承运商接口
- 附录
- 设备接口
签收信息推送接口
开发中
POST
请求参数
Body 参数application/json
createBy
string
客户标识
dataSource
string
来源系统
sign
string
签名
timestamp
string
时间戳
request
object (签收信息 )
必需
customerNumber
string
客户订单号
signType
string
签收类型
expressCode
string
鸿讯运输单号
waybillNumber
string
运单号
mailno
string
承运商单号
actualQuantity
integer
签收数量
signer
string
签收人
signedTime
string
签收时间
remark
string
备注
ext8
string
扩展字段
productList
array [object {16}]
产品明细集合
示例
{
"createBy": "string",
"dataSource": "string",
"sign": "string",
"timestamp": "string",
"request": {
"customerNumber": "string",
"signType": "string",
"expressCode": "string",
"waybillNumber": "string",
"mailno": "string",
"actualQuantity": 0,
"signer": "string",
"signedTime": "string",
"remark": "string",
"ext8": "string",
"productList": [
{
"customerLineNumber": "string",
"customerProductCode": "string",
"customerProductDescription": "string",
"quantity": 0,
"unitWeight": null,
"singlePieceVolume": null,
"productData": "string",
"validPeriod": "string",
"productBatchNumber": "string",
"specialInventoryFlag": "string",
"associatedOrder": "string",
"relatedItems": "string",
"ebeln": "string",
"ebelp": "string",
"remark": "string",
"vinNum": "string"
}
]
}
}
示例代码
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": {
"customerNumber": "string",
"signType": "string",
"expressCode": "string",
"waybillNumber": "string",
"mailno": "string",
"actualQuantity": 0,
"signer": "string",
"signedTime": "string",
"remark": "string",
"ext8": "string",
"productList": [
{
"customerLineNumber": "string",
"customerProductCode": "string",
"customerProductDescription": "string",
"quantity": 0,
"unitWeight": null,
"singlePieceVolume": null,
"productData": "string",
"validPeriod": "string",
"productBatchNumber": "string",
"specialInventoryFlag": "string",
"associatedOrder": "string",
"relatedItems": "string",
"ebeln": "string",
"ebelp": "string",
"remark": "string",
"vinNum": "string"
}
]
}
}'
返回响应
🟢200响应
application/json
Body
code
integer
响应码
message
string
错误说明
flag
boolean
响应标识
value
object
响应内容
示例
{
"code": 200,
"message": "响应成功",
"flag": true
}