GET api/v1/{practiceid}/clinical/addressbook/byId/{addressBookEntryId}
Get Address Book Entry By Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceid |
Unique identifier of practice |
globally unique identifier |
Required |
| addressBookEntryId |
Unique identifier of AddressBook Entry |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AddressBook Entry
Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.AddressBookEntryVo| Name | Description | Type | Additional information |
|---|---|---|---|
| AddressBookEntryId | globally unique identifier |
None. |
|
| IsFavourite | boolean |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| Category | string |
None. |
|
| OrganizationName | string |
None. |
|
| PracticeNumber | string |
None. |
|
| Name | string |
None. |
|
| Surname | string |
None. |
|
| Speciality | string |
None. |
|
| EmailAddress | string |
None. |
|
| OfficeNumber | string |
None. |
|
| MobileNumber | string |
None. |
|
| ContactNumber | string |
None. |
|
| PhysicalAddress | Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.AddressVo |
None. |
|
| PostalAddress | Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.AddressVo |
None. |
Response Formats
application/json, text/json
Sample:
{
"AddressBookEntryId": "5a9f2b9f-d739-49e9-8c2c-48d7966fb361",
"IsFavourite": true,
"TenantId": "a285a00f-ac19-4cec-9fa7-c743f81b62d0",
"Category": "sample string 4",
"OrganizationName": "sample string 5",
"PracticeNumber": "sample string 6",
"Name": "sample string 7",
"Surname": "sample string 8",
"Speciality": "sample string 9",
"EmailAddress": "sample string 10",
"OfficeNumber": "sample string 11",
"MobileNumber": "sample string 12",
"ContactNumber": "sample string 13",
"PhysicalAddress": {
"Line1": "sample string 1",
"Line2": "sample string 2",
"Line3": "sample string 3",
"Code": "sample string 4"
},
"PostalAddress": {
"Line1": "sample string 1",
"Line2": "sample string 2",
"Line3": "sample string 3",
"Code": "sample string 4"
}
}
application/xml, text/xml
Sample:
<AddressBookEntryVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects">
<AddressBookEntryId>5a9f2b9f-d739-49e9-8c2c-48d7966fb361</AddressBookEntryId>
<Category>sample string 4</Category>
<ContactNumber>sample string 13</ContactNumber>
<EmailAddress>sample string 10</EmailAddress>
<IsFavourite>true</IsFavourite>
<MobileNumber>sample string 12</MobileNumber>
<Name>sample string 7</Name>
<OfficeNumber>sample string 11</OfficeNumber>
<OrganizationName>sample string 5</OrganizationName>
<PhysicalAddress xmlns:d2p1="http://mpsapi.healthbridge.com/clinical/patient/v1/patient/">
<d2p1:Code>sample string 4</d2p1:Code>
<d2p1:Line1>sample string 1</d2p1:Line1>
<d2p1:Line2>sample string 2</d2p1:Line2>
<d2p1:Line3>sample string 3</d2p1:Line3>
</PhysicalAddress>
<PostalAddress xmlns:d2p1="http://mpsapi.healthbridge.com/clinical/patient/v1/patient/">
<d2p1:Code>sample string 4</d2p1:Code>
<d2p1:Line1>sample string 1</d2p1:Line1>
<d2p1:Line2>sample string 2</d2p1:Line2>
<d2p1:Line3>sample string 3</d2p1:Line3>
</PostalAddress>
<PracticeNumber>sample string 6</PracticeNumber>
<Speciality>sample string 9</Speciality>
<Surname>sample string 8</Surname>
<TenantId>a285a00f-ac19-4cec-9fa7-c743f81b62d0</TenantId>
</AddressBookEntryVo>