Retrieve Patient's Name
Overview
This endpoint allows a PFS Consumer app to retrieve the patient’s name.
Making a Request
HTTP method: GET
Endpoint URL: https://{{medicusTenant}}.{{medicusBaseURL}}/pfs-api/v1/patient/{{patientId}}/name
If the response is successful, all of the patient’s name fields are returned. If one of the fields is blank in Medicus, then a null
value will be returned for that field.
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/name
Authorization: Bearer [token]
Response Details
Properties
Field | Type | Description |
---|---|---|
| string | The patient’s name prefix |
| string | The patient’s given name |
| string | The patient’s middle name |
| string | The patient’s family name |
| string | The patient’s suffix |
| string | The patient’s preferred full name as a concatinated string |
Specific Response Codes
HTTP Code | Error Code | Scenario |
---|---|---|
|
| Request successful |
Example Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"prefix": "Miss",
"givenName": "Evelyn",
"middleNames": "Millie",
"familyName": "Turner",
"suffix": "I",
"preferredName": "Evie Turner"
}