GET api/v1/xref/{tenantXref}/patient/patients/xrefs
Get all patient ids for requested practice
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| tenantXref |
Tenant xref (practice xref in hbc) |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
patient details
Collection of Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.PatientXRefMapping| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientId | globally unique identifier |
None. |
|
| PatientXRef | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PatientId": "e50d9d2e-0724-41f8-bf5f-0ab284684040",
"PatientXRef": "sample string 2"
},
{
"PatientId": "e50d9d2e-0724-41f8-bf5f-0ab284684040",
"PatientXRef": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfPatientXRefMapping xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Patient.Interface.ValueObjects">
<PatientXRefMapping>
<PatientId>e50d9d2e-0724-41f8-bf5f-0ab284684040</PatientId>
<PatientXRef>sample string 2</PatientXRef>
</PatientXRefMapping>
<PatientXRefMapping>
<PatientId>e50d9d2e-0724-41f8-bf5f-0ab284684040</PatientId>
<PatientXRef>sample string 2</PatientXRef>
</PatientXRefMapping>
</ArrayOfPatientXRefMapping>