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": "fe691073-5c63-4a14-9960-e39f79e21a17",
"PatientId": "f439eb87-b346-43af-aef2-84d26eac7791",
"CapturedDate": "2025-10-20T22:54:37Z",
"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>2025-10-20T22:54:37.7391188+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>f439eb87-b346-43af-aef2-84d26eac7791</PatientId>
<PracticeId>fe691073-5c63-4a14-9960-e39f79e21a17</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": "79c4b4dd-3125-4d14-900a-02a61e56b0a1",
"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>79c4b4dd-3125-4d14-900a-02a61e56b0a1</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>