POST api/Service/Available
Request Information
URI Parameters
None.
Body Parameters
AvailableServicesParmName | Description | Type | Additional information |
---|---|---|---|
auth | string |
None. |
|
baseDateTime | date |
None. |
|
origCountryID | string |
None. |
|
origCity | string |
None. |
|
origStateProvID | string |
None. |
|
origPostalCode | string |
None. |
|
origAirportID | string |
None. |
|
destCountryID | string |
None. |
|
destCity | string |
None. |
|
destStateProvID | string |
None. |
|
destPostalCode | string |
None. |
|
destAirportID | string |
None. |
|
CustomerID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "auth": "sample string 1", "baseDateTime": "2025-04-03T09:32:59.3068907+00:00", "origCountryID": "sample string 3", "origCity": "sample string 4", "origStateProvID": "sample string 5", "origPostalCode": "sample string 6", "origAirportID": "sample string 7", "destCountryID": "sample string 8", "destCity": "sample string 9", "destStateProvID": "sample string 10", "destPostalCode": "sample string 11", "destAirportID": "sample string 12", "CustomerID": 1 }
application/xml, text/xml
Sample:
<AvailableServicesParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <CustomerID>1</CustomerID> <auth>sample string 1</auth> <baseDateTime>2025-04-03T09:32:59.3068907+00:00</baseDateTime> <destAirportID>sample string 12</destAirportID> <destCity>sample string 9</destCity> <destCountryID>sample string 8</destCountryID> <destPostalCode>sample string 11</destPostalCode> <destStateProvID>sample string 10</destStateProvID> <origAirportID>sample string 7</origAirportID> <origCity>sample string 4</origCity> <origCountryID>sample string 3</origCountryID> <origPostalCode>sample string 6</origPostalCode> <origStateProvID>sample string 5</origStateProvID> </AvailableServicesParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AvailableServicesRespName | Description | Type | Additional information |
---|---|---|---|
IsSuccessful | boolean |
None. |
|
ErrorMessage | string |
None. |
|
Services | Collection of ServiceItemWithDeadline |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccessful": true, "ErrorMessage": "sample string 2", "Services": [ { "ServiceID": 1, "ServiceCode": "sample string 2", "Name": "sample string 3", "WorkflowID": "sample string 4", "Description": "sample string 5", "Deadline": "2025-04-03T09:32:59.3068907+00:00", "ServiceAvailableID": 6, "DeadlineCode": "sample string 7", "LegacyServiceCode": "sample string 8", "GLAcctNumber": "sample string 9", "ServiceNameWithDeadline": "sample string 10", "IncludeInQuickQuote": true }, { "ServiceID": 1, "ServiceCode": "sample string 2", "Name": "sample string 3", "WorkflowID": "sample string 4", "Description": "sample string 5", "Deadline": "2025-04-03T09:32:59.3068907+00:00", "ServiceAvailableID": 6, "DeadlineCode": "sample string 7", "LegacyServiceCode": "sample string 8", "GLAcctNumber": "sample string 9", "ServiceNameWithDeadline": "sample string 10", "IncludeInQuickQuote": true } ] }
application/xml, text/xml
Sample:
<AvailableServicesResp 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> <Services> <ServiceItemWithDeadline> <Deadline>2025-04-03T09:32:59.3068907+00:00</Deadline> <DeadlineCode>sample string 7</DeadlineCode> <Description>sample string 5</Description> <GLAcctNumber>sample string 9</GLAcctNumber> <IncludeInQuickQuote>true</IncludeInQuickQuote> <LegacyServiceCode>sample string 8</LegacyServiceCode> <Name>sample string 3</Name> <ServiceAvailableID>6</ServiceAvailableID> <ServiceCode>sample string 2</ServiceCode> <ServiceID>1</ServiceID> <ServiceNameWithDeadline>sample string 10</ServiceNameWithDeadline> <WorkflowID>sample string 4</WorkflowID> </ServiceItemWithDeadline> <ServiceItemWithDeadline> <Deadline>2025-04-03T09:32:59.3068907+00:00</Deadline> <DeadlineCode>sample string 7</DeadlineCode> <Description>sample string 5</Description> <GLAcctNumber>sample string 9</GLAcctNumber> <IncludeInQuickQuote>true</IncludeInQuickQuote> <LegacyServiceCode>sample string 8</LegacyServiceCode> <Name>sample string 3</Name> <ServiceAvailableID>6</ServiceAvailableID> <ServiceCode>sample string 2</ServiceCode> <ServiceID>1</ServiceID> <ServiceNameWithDeadline>sample string 10</ServiceNameWithDeadline> <WorkflowID>sample string 4</WorkflowID> </ServiceItemWithDeadline> </Services> </AvailableServicesResp>