POST api/Shipments/Stops

Request Information

URI Parameters

None.

Body Parameters

StopsBindingViewModel
NameDescriptionTypeAdditional 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:25:31.5988074Z",
  "PuAppointmentDate": "2025-10-28T12:25:31.5988074Z",
  "DestinationNumber": "sample string 5",
  "Mabd": "2025-10-28T12:25:31.5988074Z",
  "DelAppointmentDate": "2025-10-28T12:25:31.5988074Z",
  "Note": "sample string 6",
  "Type": "sample string 7",
  "PuAppointmentToDate": "2025-10-28T12:25:31.5988074Z",
  "DelAppointmentToDate": "2025-10-28T12:25:31.5988074Z",
  "EmptyDate": "2025-10-28T12:25:31.5988074Z"
}

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:25:31.5988074Z</DelAppointmentDate>
  <DelAppointmentToDate>2025-10-28T12:25:31.5988074Z</DelAppointmentToDate>
  <DestinationNumber>sample string 5</DestinationNumber>
  <EmptyDate>2025-10-28T12:25:31.5988074Z</EmptyDate>
  <Mabd>2025-10-28T12:25:31.5988074Z</Mabd>
  <Note>sample string 6</Note>
  <PickupNumber>sample string 4</PickupNumber>
  <PuAppointmentDate>2025-10-28T12:25:31.5988074Z</PuAppointmentDate>
  <PuAppointmentToDate>2025-10-28T12:25:31.5988074Z</PuAppointmentToDate>
  <ReqShipDate>2025-10-28T12:25:31.5988074Z</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

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.