POST api/Route/Manifest/Update
Request Information
URI Parameters
None.
Body Parameters
UpdateManifestLegParm| Name | Description | Type | Additional information |
|---|---|---|---|
| auth | string |
None. |
|
| ManifestLegID | integer |
None. |
|
| CarrierID | integer |
None. |
|
| RouteNumber | string |
None. |
|
| DepartHubID | string |
None. |
|
| ScheduledDepartDateTime | date |
None. |
|
| UpdatedDepartDateTime | date |
None. |
|
| ActualDepartDateTime | date |
None. |
|
| ArriveHubID | string |
None. |
|
| ScheduledArriveDateTime | date |
None. |
|
| UpdatedArriveDateTime | date |
None. |
|
| ActualArriveDateTime | date |
None. |
|
| IsProblem | boolean |
None. |
|
| ProblemDescription | string |
None. |
|
| Status | string |
None. |
|
| ManifestGUID | string |
None. |
|
| ConfirmedOnboard | boolean |
None. |
|
| NewSequenceNumber | integer |
None. |
|
| LegType | string |
None. |
|
| EquipmentType | string |
None. |
|
| AutoTrack | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"auth": "sample string 1",
"ManifestLegID": 2,
"CarrierID": 3,
"RouteNumber": "sample string 4",
"DepartHubID": "sample string 5",
"ScheduledDepartDateTime": "2025-12-03T12:35:20.6667331+00:00",
"UpdatedDepartDateTime": "2025-12-03T12:35:20.6667331+00:00",
"ActualDepartDateTime": "2025-12-03T12:35:20.6667331+00:00",
"ArriveHubID": "sample string 6",
"ScheduledArriveDateTime": "2025-12-03T12:35:20.6667331+00:00",
"UpdatedArriveDateTime": "2025-12-03T12:35:20.6667331+00:00",
"ActualArriveDateTime": "2025-12-03T12:35:20.6667331+00:00",
"IsProblem": true,
"ProblemDescription": "sample string 8",
"Status": "sample string 9",
"ManifestGUID": "sample string 10",
"ConfirmedOnboard": true,
"NewSequenceNumber": 1,
"LegType": "sample string 12",
"EquipmentType": "sample string 13",
"AutoTrack": true
}
application/xml, text/xml
Sample:
<UpdateManifestLegParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <ActualArriveDateTime>2025-12-03T12:35:20.6667331+00:00</ActualArriveDateTime> <ActualDepartDateTime>2025-12-03T12:35:20.6667331+00:00</ActualDepartDateTime> <ArriveHubID>sample string 6</ArriveHubID> <AutoTrack>true</AutoTrack> <CarrierID>3</CarrierID> <ConfirmedOnboard>true</ConfirmedOnboard> <DepartHubID>sample string 5</DepartHubID> <EquipmentType>sample string 13</EquipmentType> <IsProblem>true</IsProblem> <LegType>sample string 12</LegType> <ManifestGUID>sample string 10</ManifestGUID> <ManifestLegID>2</ManifestLegID> <NewSequenceNumber>1</NewSequenceNumber> <ProblemDescription>sample string 8</ProblemDescription> <RouteNumber>sample string 4</RouteNumber> <ScheduledArriveDateTime>2025-12-03T12:35:20.6667331+00:00</ScheduledArriveDateTime> <ScheduledDepartDateTime>2025-12-03T12:35:20.6667331+00:00</ScheduledDepartDateTime> <Status>sample string 9</Status> <UpdatedArriveDateTime>2025-12-03T12:35:20.6667331+00:00</UpdatedArriveDateTime> <UpdatedDepartDateTime>2025-12-03T12:35:20.6667331+00:00</UpdatedDepartDateTime> <auth>sample string 1</auth> </UpdateManifestLegParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseBase| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccessful | boolean |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccessful": true,
"ErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <ErrorMessage>sample string 2</ErrorMessage> <IsSuccessful>true</IsSuccessful> </ResponseBase>