PUT api/pro/clinics/{clinicId}/clients/{clientId}/person-info
Change the person information for the specific client
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clinicId |
The clinic Id |
string |
Required |
| clientId |
The client Id |
string |
Required |
Body Parameters
the Change Client Person Info Request
ChangeClientPersonInfoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonInfoDto | PersonInfoDto |
Required |
Request Formats
application/json, text/json
Sample:
{
"PersonInfoDto": {
"Name": {
"Prefix": "sample string 1",
"FirstName": "sample string 2",
"MiddleName": "sample string 3",
"LastName": "sample string 4",
"Credentials": "sample string 5"
},
"Gender": "Male",
"DateOfBirth": "2025-12-16T12:36:37.4249157+00:00",
"Guardian": "sample string 1",
"ReferredBy": "sample string 2",
"Notes": "sample string 3"
}
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.