POST api/Route/Manifest/Create

Request Information

URI Parameters

None.

Body Parameters

CreateManifestLegParm
NameDescriptionTypeAdditional information
auth

string

None.

ManifestGUID

string

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.

ActualArriveDatTime

date

None.

IsProblem

boolean

None.

ProblemDescription

string

None.

Status

string

None.

ExistingTransportLegID

integer

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",
  "ManifestGUID": "sample string 2",
  "CarrierID": 3,
  "RouteNumber": "sample string 4",
  "DepartHubID": "sample string 5",
  "ScheduledDepartDateTime": "2024-09-19T09:06:58.9253596+00:00",
  "UpdatedDepartDateTime": "2024-09-19T09:06:58.9253596+00:00",
  "ActualDepartDateTime": "2024-09-19T09:06:58.9253596+00:00",
  "ArriveHubID": "sample string 6",
  "ScheduledArriveDateTime": "2024-09-19T09:06:58.9253596+00:00",
  "UpdatedArriveDateTime": "2024-09-19T09:06:58.9253596+00:00",
  "ActualArriveDatTime": "2024-09-19T09:06:58.9253596+00:00",
  "IsProblem": true,
  "ProblemDescription": "sample string 8",
  "Status": "sample string 9",
  "ExistingTransportLegID": 1,
  "ConfirmedOnboard": true,
  "NewSequenceNumber": 1,
  "LegType": "sample string 11",
  "EquipmentType": "sample string 12",
  "AutoTrack": true
}

application/xml, text/xml

Sample:
<CreateManifestLegParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models">
  <ActualArriveDatTime>2024-09-19T09:06:58.9253596+00:00</ActualArriveDatTime>
  <ActualDepartDateTime>2024-09-19T09:06:58.9253596+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 12</EquipmentType>
  <ExistingTransportLegID>1</ExistingTransportLegID>
  <IsProblem>true</IsProblem>
  <LegType>sample string 11</LegType>
  <ManifestGUID>sample string 2</ManifestGUID>
  <NewSequenceNumber>1</NewSequenceNumber>
  <ProblemDescription>sample string 8</ProblemDescription>
  <RouteNumber>sample string 4</RouteNumber>
  <ScheduledArriveDateTime>2024-09-19T09:06:58.9253596+00:00</ScheduledArriveDateTime>
  <ScheduledDepartDateTime>2024-09-19T09:06:58.9253596+00:00</ScheduledDepartDateTime>
  <Status>sample string 9</Status>
  <UpdatedArriveDateTime>2024-09-19T09:06:58.9253596+00:00</UpdatedArriveDateTime>
  <UpdatedDepartDateTime>2024-09-19T09:06:58.9253596+00:00</UpdatedDepartDateTime>
  <auth>sample string 1</auth>
</CreateManifestLegParm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseBase
NameDescriptionTypeAdditional 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>