GET Carrier
This method will return a list of all carrier objects.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of Carrier objects
Collection of CarrierDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| CarrierID |
The SMM ID of the insurance carrier, this property can be ommitted if this value is unknown. |
integer |
None. |
| Name |
The name of the insurance carrier on the order. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CarrierID": 1,
"Name": "sample string 1"
},
{
"CarrierID": 1,
"Name": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfCarrierDTO xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CarrierDTO>
<CarrierID>1</CarrierID>
<Name>sample string 1</Name>
</CarrierDTO>
<CarrierDTO>
<CarrierID>1</CarrierID>
<Name>sample string 1</Name>
</CarrierDTO>
</ArrayOfCarrierDTO>