Create Pickup Schedule Order


POST http://openapi.ck1info.com/v1/pickupSchedule
Description: Create pickup schedule order
Http 201 - Ok
Http 400 - Invalid data, Please check

Request

Body Parameters
NameDataTypeAnnotationRequiredDescriptionExample
RefNo string

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

String length: between 0 and 36

Required

PMN5698001

Address PickupScheduleAddress

None.

Date date

None.

Required

2025-01-01

Time string

String length: between 0 and 2

Required

值:AM或PM(AM时间范围:8:30-12:00,PM时间范围:13:00-17:00)

GoodDetail GoodDetail

None.

Remark string

String length: between 0 and 200

Request in JSON
{
  "RefNo": "sample string 1",
  "Address": {
    "Country": "sample string 1",
    "Province": "sample string 2",
    "City": "sample string 3",
    "Street1": "sample string 4",
    "Street2": "sample string 5",
    "HouseNumber": "sample string 6",
    "Postcode": "sample string 7",
    "Contact": "sample string 8",
    "Phone": "sample string 9",
    "Email": "sample string 10"
  },
  "Date": "2025-08-09T08:30:05.119+08:00",
  "Time": "sample string 3",
  "GoodDetail": {
    "Volumn": 1,
    "Weight": 2,
    "Quantity": 3
  },
  "Remark": "sample string 4"
}

Response

None.