GET Carrier/CustomList
This method will return a list of carrier objects all tied to the credentials supplied.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of Carrier objects
Collection of CarrierDTOName | 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:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <CarrierDTO> <CarrierID>1</CarrierID> <Name>sample string 1</Name> </CarrierDTO> <CarrierDTO> <CarrierID>1</CarrierID> <Name>sample string 1</Name> </CarrierDTO> </ArrayOfCarrierDTO>