Create Pickup Order


POST http://openapi.ck1info.com/v1/pickupOrders
Description: Create pickup order

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
PickupId string

regular expression: ^[a-zA-Z0-9\-_]{1,25}$

String length: between 0 and 25

Required

PMN5698001

Contact string

String length: between 0 and 16

Required

林小柯

Phone string

Data type: PhoneNumber

String length: between 0 and 32

Required

13545678910

City string

String length: between 0 and 16

Required

广州

District string

String length: between 0 and 32

Required

天河区

Address string

String length: between 0 and 128

Required

黄埔大道163号

PickupTime string

DateTime: 2015-11-04T15:00:00Z

Required

2015-11-24T20:00:00Z

InboundDetail InboundDetail

None.

DirectExpressDetail DirectExpressDetail

None.

Remark string

String length: between 0 and 200

收货单备注

Request in JSON
{
  "PickupId": "sample string 1",
  "Contact": "sample string 2",
  "Phone": "sample string 3",
  "City": "sample string 4",
  "District": "sample string 5",
  "Address": "sample string 6",
  "PickupTime": "sample string 7",
  "InboundDetail": {
    "Volumn": 1.1,
    "ContainerQty": 2,
    "RelateShipmentIds": [
      "sample string 1",
      "sample string 2"
    ]
  },
  "DirectExpressDetail": {
    "Weight": 1,
    "PackageQty": 2
  },
  "Remark": "sample string 8"
}

Response

None.