GET api/HedisServices/GetPatients?ipa={ipa}&npi={npi}
List patients associated with the specified IPA and NPI.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ipa |
IPA ID. |
string |
Required |
| npi |
Provider NPI number. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PatientList| Name | Description | Type | Additional information |
|---|---|---|---|
| patients | Collection of PatientModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"patients": [
{
"name": "sample string 1",
"id": "sample string 2",
"no": 3,
"gender": "A",
"dob": "sample string 5",
"fromHpOption": "sample string 6"
},
{
"name": "sample string 1",
"id": "sample string 2",
"no": 3,
"gender": "A",
"dob": "sample string 5",
"fromHpOption": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<PatientList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MediProvider.Models.Hedis">
<patients>
<PatientModel>
<dob>sample string 5</dob>
<fromHpOption>sample string 6</fromHpOption>
<gender>65</gender>
<id>sample string 2</id>
<name>sample string 1</name>
<no>3</no>
</PatientModel>
<PatientModel>
<dob>sample string 5</dob>
<fromHpOption>sample string 6</fromHpOption>
<gender>65</gender>
<id>sample string 2</id>
<name>sample string 1</name>
<no>3</no>
</PatientModel>
</patients>
</PatientList>