...
字段 | 类型 | 非空 | 描述 |
status | String | M | Success/Failure |
code | Number | O | 返回代码,请参考以下code和Message关系表 |
message | String | O | 响应信息,请参考以下code和Message关系表 |
报错信息
code | message |
100300 | Data is empty. There is no corresponding line haul founded. |
2000000 | uuid is required. |
1003004 | Attachment file base64 or fileName or fileType is empty (附件文件base64/文件名称/文件类型为空) |
1003005 | Attachment fileType is invalid (附件文件类型无效) |
请求报文
代码块 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
{ "uuid": "Qu57HhAhW6TTTQGm1Dvn_a", "atd": "2022-05-31 14:20:05", "ata": "2022-05-31 17:30:05", "lineHaulAttachments": [ { "attachmentFileType": "0", "attachment": "Base64 format", "attachmentFileName": "test1.pdf" }, { "attachmentFileType": "6", "attachment": "Base64 format", "attachmentFileName": "test2.pdf" } ] } |
...