GET api/cfgShippingService/{id}
Return a single value from the ShippingServices table using the primary key as ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ShippingServices Primary Key. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
cfgShippingServiceDb| Name | Description | Type | Additional information |
|---|---|---|---|
| ShippingServiceID | integer |
None. |
|
| ShippingServiceCode | string |
Required Max length: 80 |
|
| ShippingServiceName | string |
Max length: 100 |
|
| ExternalReferenceID | globally unique identifier |
None. |
|
| ServiceLevelCode | string |
Max length: 15 |
|
| CarrierCode | string |
Max length: 4 |
|
| CarrierServiceCode | string |
Max length: 10 |
|
| UniversalService | boolean |
None. |
|
| SetRequiredShipDate | boolean |
None. |
|
| IsActive | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| CarrierReferenceID | globally unique identifier |
None. |
|
| ResidentialMode | integer |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"ShippingServiceID": 1,
"ShippingServiceCode": "sample string 2",
"ShippingServiceName": "sample string 3",
"ExternalReferenceID": "ff3d2298-ee59-43c6-be8d-6dcfd32f9beb",
"ServiceLevelCode": "sample string 4",
"CarrierCode": "sample string 5",
"CarrierServiceCode": "sample string 6",
"UniversalService": true,
"SetRequiredShipDate": true,
"IsActive": true,
"CreatedBy": 10,
"CreatedDate": "2026-02-02T14:36:23.7333379+00:00",
"UpdatedBy": 12,
"UpdatedDate": "2026-02-02T14:36:23.7333379+00:00",
"CarrierReferenceID": "34bb2009-82c1-41aa-9ddb-55eb85dcc005",
"ResidentialMode": 14
}
application/xml, text/xml
Sample:
<cfgShippingServiceDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
<results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
<CarrierCode>sample string 5</CarrierCode>
<CarrierReferenceID>34bb2009-82c1-41aa-9ddb-55eb85dcc005</CarrierReferenceID>
<CarrierServiceCode>sample string 6</CarrierServiceCode>
<CreatedBy>10</CreatedBy>
<CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T14:36:23.7333379Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</CreatedDate>
<ExternalReferenceID>ff3d2298-ee59-43c6-be8d-6dcfd32f9beb</ExternalReferenceID>
<IsActive>true</IsActive>
<ResidentialMode>14</ResidentialMode>
<ServiceLevelCode>sample string 4</ServiceLevelCode>
<SetRequiredShipDate>true</SetRequiredShipDate>
<ShippingServiceCode>sample string 2</ShippingServiceCode>
<ShippingServiceID>1</ShippingServiceID>
<ShippingServiceName>sample string 3</ShippingServiceName>
<UniversalService>true</UniversalService>
<UpdatedBy>12</UpdatedBy>
<UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2026-02-02T14:36:23.7333379Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</UpdatedDate>
</cfgShippingServiceDb>