POST api/v1/{providerId}/clinical/patient/configuration/{patientId}/revise
Add/Update patient configration
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| providerId | globally unique identifier |
Required |
|
| patientId | globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Hhas.Patient.Interface.ValueObjects.PatientConfigurationVo| Name | Description | Type | Additional information |
|---|---|---|---|
| PracticeId | globally unique identifier |
None. |
|
| PatientId | globally unique identifier |
None. |
|
| CapturedDate | date |
None. |
|
| Configuration | Dictionary of string [key] and string [value] |
None. |
Request Formats
application/json, text/json
Sample:
{
"PracticeId": "d694bd6e-7020-42b7-bc7d-7212d2d902ab",
"PatientId": "9bfa15d4-2098-49fa-bbf3-c8d603ec3c72",
"CapturedDate": "2026-03-30T21:54:44Z",
"Configuration": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
}
application/xml, text/xml
Sample:
<PatientConfigurationVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/clinical/patient/v1/PatientConfigurationVo/">
<CapturedDate>2026-03-30T21:54:44.3963063+02:00</CapturedDate>
<Configuration xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Configuration>
<PatientId>9bfa15d4-2098-49fa-bbf3-c8d603ec3c72</PatientId>
<PracticeId>d694bd6e-7020-42b7-bc7d-7212d2d902ab</PracticeId>
</PatientConfigurationVo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Guid| Name | Description | Type | Additional information |
|---|---|---|---|
| Sucess | boolean |
None. |
|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | globally unique identifier |
None. |
|
| Links | Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink |
None. |
Response Formats
application/json, text/json
Sample:
{
"Sucess": true,
"ResponseCode": 2,
"ResponseMessage": "sample string 3",
"Data": "f528fa8f-4186-45fc-a1e0-31ae93322017",
"Links": [
{
"Rel": "sample string 1",
"HRef": "sample string 2"
},
{
"Rel": "sample string 1",
"HRef": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RestApiResultOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
<Data>f528fa8f-4186-45fc-a1e0-31ae93322017</Data>
<Links>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
<RestApiLink>
<HRef>sample string 2</HRef>
<Rel>sample string 1</Rel>
</RestApiLink>
</Links>
<ResponseCode>2</ResponseCode>
<ResponseMessage>sample string 3</ResponseMessage>
<Sucess>true</Sucess>
</RestApiResultOfguid>