PUT Patient
Updating patient
Request Information
URI Parameters
None.
Body Parameters
patientHelperModelPut| Name | Description | Type | Additional information |
|---|---|---|---|
| session_id | string |
None. |
|
| patient_id | integer |
None. |
|
| patient_title | string |
None. |
|
| patient_firstname | string |
None. |
|
| patient_lastname | string |
None. |
|
| patient_telephone | string |
None. |
|
| patient_mobile | string |
None. |
|
| patient_email | string |
None. |
|
| patient_dob | date |
None. |
|
| patient_address | Collection of PatientAddress |
None. |
Request Formats
application/json, text/json
Sample:
{
"session_id": "sample string 1",
"patient_id": 2,
"patient_title": "sample string 3",
"patient_firstname": "sample string 4",
"patient_lastname": "sample string 5",
"patient_telephone": "sample string 6",
"patient_mobile": "sample string 7",
"patient_email": "sample string 8",
"patient_dob": "2025-11-30T00:42:12.985517+00:00",
"patient_address": [
{
"address_type": 1,
"add_name": "sample string 2",
"add_town": "sample string 3",
"add_postcode": "sample string 4",
"add_county": "sample string 5",
"add_country_id": 1
},
{
"address_type": 1,
"add_name": "sample string 2",
"add_town": "sample string 3",
"add_postcode": "sample string 4",
"add_county": "sample string 5",
"add_country_id": 1
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
replyPatient| Name | Description | Type | Additional information |
|---|---|---|---|
| patient_id | integer |
None. |
|
| status | integer |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"patient_id": 1,
"status": 2,
"message": "sample string 3"
}