GET api/EstimateCompany/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
EstimateCompanyName | Description | Type | Additional information |
---|---|---|---|
ID | globally unique identifier |
None. |
|
SCAC | string |
None. |
|
CompanyName | string |
None. |
|
DefaultCompany | boolean |
None. |
|
Interstate | boolean |
None. |
|
ForeignCarrier | boolean |
None. |
|
LocalSCAC | string |
None. |
|
ForeignSalesRep | string |
None. |
|
ForeignCustno | integer |
None. |
|
ForeignSubno | integer |
None. |
|
Commercial | boolean |
None. |
|
IntraStates | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "ID": "ff3d8207-816c-4479-a9fb-15620c4c7e86", "SCAC": "sample string 2", "CompanyName": "sample string 3", "DefaultCompany": true, "Interstate": true, "ForeignCarrier": true, "LocalSCAC": "sample string 7", "ForeignSalesRep": "sample string 8", "ForeignCustno": 1, "ForeignSubno": 1, "Commercial": true, "IntraStates": "sample string 10" }
application/xml, text/xml
Sample:
<EstimateCompany xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estimate.Models"> <Commercial>true</Commercial> <CompanyName>sample string 3</CompanyName> <DefaultCompany>true</DefaultCompany> <ForeignCarrier>true</ForeignCarrier> <ForeignCustno>1</ForeignCustno> <ForeignSalesRep>sample string 8</ForeignSalesRep> <ForeignSubno>1</ForeignSubno> <ID>ff3d8207-816c-4479-a9fb-15620c4c7e86</ID> <Interstate>true</Interstate> <IntraStates>sample string 10</IntraStates> <LocalSCAC>sample string 7</LocalSCAC> <SCAC>sample string 2</SCAC> </EstimateCompany>