Skip to content

Modify Parcel Size&Weight

Request Method

http
POST /api/parcel/edit-parcel-size-weight

NOTE

Modify Parcel Size Or Weight

FieldDescription
Content-Typeapplication/json
AuthorizationBearer <token>

Parameter

FieldMandatoryTypeDescriptionLength
wmg_tracking_numYStringWMG Tracking Num<= 60 characters
weightNNumericThe declared weight of the parcel.
If left blank will not modify
3 digit decimal place 9.999
lengthNNumericThe length of the parcel.
If left blank will not modify
2 digit decimal place 9.99
widthNNumericThe width of the parcel.
If left blank will not modify
2 digit decimal place 9.99
heightNNumericThe height of the parcel.
If left blank will not modify
2 digit decimal place 9.99

Request

json
{
    "wmg_tracking_num": "CY18000004XX4SG",
    "weight": "12.028",
    "length": "12.08",
    "width": "12.08",
    "height": "12.08"
}

Response(Success)

json
{
    "Code": 0,
    "Message": "Success",
    "Data": []
}

Response(Fail)

json
{
    "Code": 1,
    "Message": "Parcel Not Found",
    "Data": []
}