GET api/PatientInsurances/search?term={term}&typeId={typeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
term

string

Required

typeId

integer

None.

Body Parameters

None.

Response Information

Resource Description

PatientInsurance
NameDescriptionTypeAdditional information
INSURANCE_ID

integer

None.

CPI

string

None.

DIV_ID

integer

None.

INS_TYPE

integer

None.

INS_COMPANY

string

None.

INS_PLAN

string

None.

ENROLLEE

string

None.

ENROLLEE_ID

string

None.

GROUP_NUM

string

None.

ISSUED

date

None.

LAST_UPDATED

date

None.

DEFAULT_INS

boolean

None.

OLD

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "INSURANCE_ID": 1,
  "CPI": "sample string 2",
  "DIV_ID": 3,
  "INS_TYPE": 4,
  "INS_COMPANY": "sample string 5",
  "INS_PLAN": "sample string 6",
  "ENROLLEE": "sample string 7",
  "ENROLLEE_ID": "sample string 8",
  "GROUP_NUM": "sample string 9",
  "ISSUED": "2025-08-29T02:55:29.5220099+00:00",
  "LAST_UPDATED": "2025-08-29T02:55:29.5220099+00:00",
  "DEFAULT_INS": true,
  "OLD": 1
}

application/octet-stream

Sample:
{"INSURANCE_ID":1,"CPI":"sample string 2","DIV_ID":3,"INS_TYPE":4,"INS_COMPANY":"sample string 5","INS_PLAN":"sample string 6","ENROLLEE":"sample string 7","ENROLLEE_ID":"sample string 8","GROUP_NUM":"sample string 9","ISSUED":"2025-08-29T02:55:29.5220099+00:00","LAST_UPDATED":"2025-08-29T02:55:29.5220099+00:00","DEFAULT_INS":true,"OLD":1}

application/xml, text/xml

Sample:
<PatientInsurance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <INSURANCE_ID>1</INSURANCE_ID>
  <CPI>sample string 2</CPI>
  <DIV_ID>3</DIV_ID>
  <INS_TYPE>4</INS_TYPE>
  <INS_COMPANY>sample string 5</INS_COMPANY>
  <INS_PLAN>sample string 6</INS_PLAN>
  <ENROLLEE>sample string 7</ENROLLEE>
  <ENROLLEE_ID>sample string 8</ENROLLEE_ID>
  <GROUP_NUM>sample string 9</GROUP_NUM>
  <ISSUED>2025-08-29T02:55:29.5220099+00:00</ISSUED>
  <LAST_UPDATED>2025-08-29T02:55:29.5220099+00:00</LAST_UPDATED>
  <DEFAULT_INS>true</DEFAULT_INS>
  <OLD>1</OLD>
</PatientInsurance>