PUT api/Shipments/Stops/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
StopsBindingViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ShipmentId | integer |
Required |
|
| AddressId | integer |
Required |
|
| SealNumber | string |
None. |
|
| PickupNumber | string |
None. |
|
| SpecialReq | Collection of string |
None. |
|
| ReqShipDate | date |
None. |
|
| PuAppointmentDate | date |
None. |
|
| DestinationNumber | string |
None. |
|
| Mabd | date |
None. |
|
| DelAppointmentDate | date |
None. |
|
| Note | string |
None. |
|
| Type | string |
Required |
|
| PuAppointmentToDate | date |
None. |
|
| DelAppointmentToDate | date |
None. |
|
| EmptyDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShipmentId": 1,
"AddressId": 2,
"SealNumber": "sample string 3",
"PickupNumber": "sample string 4",
"SpecialReq": [
"sample string 1",
"sample string 2"
],
"ReqShipDate": "2025-10-28T12:27:23.2045887Z",
"PuAppointmentDate": "2025-10-28T12:27:23.2045887Z",
"DestinationNumber": "sample string 5",
"Mabd": "2025-10-28T12:27:23.2045887Z",
"DelAppointmentDate": "2025-10-28T12:27:23.2045887Z",
"Note": "sample string 6",
"Type": "sample string 7",
"PuAppointmentToDate": "2025-10-28T12:27:23.2045887Z",
"DelAppointmentToDate": "2025-10-28T12:27:23.2045887Z",
"EmptyDate": "2025-10-28T12:27:23.2045887Z"
}
application/xml, text/xml
Sample:
<StopsBindingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShipperCore.ViewModels">
<AddressId>2</AddressId>
<DelAppointmentDate>2025-10-28T12:27:23.2045887Z</DelAppointmentDate>
<DelAppointmentToDate>2025-10-28T12:27:23.2045887Z</DelAppointmentToDate>
<DestinationNumber>sample string 5</DestinationNumber>
<EmptyDate>2025-10-28T12:27:23.2045887Z</EmptyDate>
<Mabd>2025-10-28T12:27:23.2045887Z</Mabd>
<Note>sample string 6</Note>
<PickupNumber>sample string 4</PickupNumber>
<PuAppointmentDate>2025-10-28T12:27:23.2045887Z</PuAppointmentDate>
<PuAppointmentToDate>2025-10-28T12:27:23.2045887Z</PuAppointmentToDate>
<ReqShipDate>2025-10-28T12:27:23.2045887Z</ReqShipDate>
<SealNumber>sample string 3</SealNumber>
<ShipmentId>1</ShipmentId>
<SpecialReq xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</SpecialReq>
<Type>sample string 7</Type>
</StopsBindingViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.