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.PatientXRefMappingName | Description | Type | Additional information |
---|---|---|---|
PatientId | globally unique identifier |
None. |
|
PatientXRef | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "PatientId": "b08f3bd9-54f6-489e-aa99-1a4936431d6d", "PatientXRef": "sample string 2" }, { "PatientId": "b08f3bd9-54f6-489e-aa99-1a4936431d6d", "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>b08f3bd9-54f6-489e-aa99-1a4936431d6d</PatientId> <PatientXRef>sample string 2</PatientXRef> </PatientXRefMapping> <PatientXRefMapping> <PatientId>b08f3bd9-54f6-489e-aa99-1a4936431d6d</PatientId> <PatientXRef>sample string 2</PatientXRef> </PatientXRefMapping> </ArrayOfPatientXRefMapping>