GET api/LookUpCust/GetInsurerCodesForGroup?pInsurer={pInsurer}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pInsurer

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InsurerCodesForGroup
NameDescriptionTypeAdditional information
check_code

string

String length: inclusive between 0 and 20

check_name

string

String length: inclusive between 0 and 60

check_name_long

string

String length: inclusive between 0 and 60

insurer

string

String length: inclusive between 0 and 20

Response Formats

application/json, text/json

Sample:
[
  {
    "check_code": "sample string 1",
    "check_name": "sample string 2",
    "check_name_long": "sample string 3",
    "insurer": "sample string 4"
  },
  {
    "check_code": "sample string 1",
    "check_name": "sample string 2",
    "check_name_long": "sample string 3",
    "insurer": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInsurerCodesForGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustDemog">
  <InsurerCodesForGroup>
    <check_code>sample string 1</check_code>
    <check_name>sample string 2</check_name>
    <check_name_long>sample string 3</check_name_long>
    <insurer>sample string 4</insurer>
  </InsurerCodesForGroup>
  <InsurerCodesForGroup>
    <check_code>sample string 1</check_code>
    <check_name>sample string 2</check_name>
    <check_name_long>sample string 3</check_name_long>
    <insurer>sample string 4</insurer>
  </InsurerCodesForGroup>
</ArrayOfInsurerCodesForGroup>

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.