POST api/JiepeiIC/ICShipment

订单发货

Request Information

URI Parameters

None.

Body Parameters

请求参数

ICShipmentRequest
NameDescriptionTypeAdditional information
SenderName

发货人

string

None.

OrderNo

订单号

string

None.

ShipDate

发货时间

date

None.

ShipNo

发货运单号

string

None.

ShipCompany

发货方式

string

None.

Items

本次发货的物料信息

Collection of ICShipmentItem

None.

Request Formats

application/json, text/json

Sample:
{
  "SenderName": "sample string 1",
  "OrderNo": "sample string 2",
  "ShipDate": "2025-05-05T21:04:05.4118951+08:00",
  "ShipNo": "sample string 4",
  "ShipCompany": "sample string 5",
  "Items": [
    {
      "Id": 1,
      "Num": 2,
      "PartNo": "sample string 3"
    },
    {
      "Id": 1,
      "Num": 2,
      "PartNo": "sample string 3"
    }
  ]
}

Response Information

Resource Description

BaseResponseModel
NameDescriptionTypeAdditional information
Status

Request processing results ('ok' or 'error')

string

None.

ErrorText

Error Description ( Empty when request processing successfully )

string

None.

Code

状态码

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "ErrorText": "sample string 2",
  "Code": 3
}