Retrieve Patient's Home Address
Overview
This endpoint allows a PFS Consumer app to query a patient’s home address.
Making a Request
HTTP method: GET
Endpoint URL: [Tenant URL]/pfs-api/v1/patient/{patientId}/home-address
Request Headers
Header | Value | Description |
---|---|---|
|
| The JWT token provided by the Consumer |
URL Parameters
Parameter | Description | Validation Rules |
---|---|---|
| Patient ID e.g. | Mandatory UUID |
Example Request
GET /pfs-api/v1/patient/e9af860e-cf8e-4272-b81a-a95cc8a531f7/home-addresses
Authorization: Bearer [token]
Response Details
Properties
Field | Type | Description |
---|---|---|
| string | The first line of the patient’s address |
| string | The second line of the patient’s address |
| string | The third line of the patient’s address |
| string | The patient’s address locality (a Town/city) |
| string | The administrative area (the County) |
| string | The patient’s address postcode |
| string | The patient’s country |
Specific Response Codes
HTTP Code | Error Code | Scenario |
---|---|---|
|
| Request successful |
Example Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"homeAddress": {
"line1": "101A",
"line2": "FELIXSTOWE ROAD",
"line3": "LONDON",
"locality": null,
"administrativeArea": null,
"postalCode": "N9 0DX",
"country": "United Kingdom"
}
}