GET Carrier/{carrierid}/Product

Returns a list of products for a carrier

Request Information

URI Parameters

NameDescriptionTypeAdditional information
carrierid

The carrier id that products are being requested for.

integer

Required

Body Parameters

None.

Response Information

Resource Description

A list of product types.

Collection of Product
NameDescriptionTypeAdditional information
ID

An insurance carrier product ID representation in SMM's system. This value can be ommitted.

integer

None.

ReqMatrixID

This value can be ommitted unless using SMM's Requirement Matrix service.

string

None.

Name

The name of the product being applied for.

string

None.

LineOfBusiness

Valid values are: Life, Annuity, Disability Insurance, Health Insurance, Long Term Care, Critical Illness, Other

string

None.

TypeOfBusiness

Valid values are: Whole Life, Term, Universal Life, Variable Universal Life, Indexed Universal Life, Interest Sensitive Whole Life, Excess Interest Life, Variable Whole Life, Long Term Care, etc.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "ReqMatrixID": "sample string 1",
    "Name": "sample string 2",
    "LineOfBusiness": "sample string 3",
    "TypeOfBusiness": "sample string 4"
  },
  {
    "ID": 1,
    "ReqMatrixID": "sample string 1",
    "Name": "sample string 2",
    "LineOfBusiness": "sample string 3",
    "TypeOfBusiness": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfProduct xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Product>
    <ID>1</ID>
    <ReqMatrixID>sample string 1</ReqMatrixID>
    <Name>sample string 2</Name>
    <LineOfBusiness>sample string 3</LineOfBusiness>
    <TypeOfBusiness>sample string 4</TypeOfBusiness>
  </Product>
  <Product>
    <ID>1</ID>
    <ReqMatrixID>sample string 1</ReqMatrixID>
    <Name>sample string 2</Name>
    <LineOfBusiness>sample string 3</LineOfBusiness>
    <TypeOfBusiness>sample string 4</TypeOfBusiness>
  </Product>
</ArrayOfProduct>