POST api/ManifestShipment/FindShipmentsToAssign
Request Information
URI Parameters
None.
Body Parameters
FindShipmentsToAssignParmName | Description | Type | Additional information |
---|---|---|---|
auth | string |
None. |
|
OfficeID | integer |
None. |
|
AccountNumber | string |
None. |
|
ServiceID | integer |
None. |
|
PickupAirportID | string |
None. |
|
DeliveryAirportID | string |
None. |
|
ManifestGUID | string |
None. |
|
OrderNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "auth": "sample string 1", "OfficeID": 1, "AccountNumber": "sample string 2", "ServiceID": 1, "PickupAirportID": "sample string 3", "DeliveryAirportID": "sample string 4", "ManifestGUID": "sample string 5", "OrderNumber": "sample string 6" }
application/xml, text/xml
Sample:
<FindShipmentsToAssignParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <AccountNumber>sample string 2</AccountNumber> <DeliveryAirportID>sample string 4</DeliveryAirportID> <ManifestGUID>sample string 5</ManifestGUID> <OfficeID>1</OfficeID> <OrderNumber>sample string 6</OrderNumber> <PickupAirportID>sample string 3</PickupAirportID> <ServiceID>1</ServiceID> <auth>sample string 1</auth> </FindShipmentsToAssignParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
FindShipmentsToAssignRespName | Description | Type | Additional information |
---|---|---|---|
IsSuccessful | boolean |
None. |
|
ErrorMessage | string |
None. |
|
Shipments | Collection of AssignShipmentItem |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccessful": true, "ErrorMessage": "sample string 2", "Shipments": null }
application/xml, text/xml
Sample:
<FindShipmentsToAssignResp 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> <Shipments i:nil="true" /> </FindShipmentsToAssignResp>