POST api/v2/{providerId}/clinical/patient/genericinformation/{patientId}/revise
Add/Update patient file generic information
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| providerId | globally unique identifier |
Required |
|
| patientId | globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PatientFileGenericInformationVo| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientFileGenericInformationId | globally unique identifier |
None. |
|
| CapturedDate | date |
None. |
|
| PracticeId | globally unique identifier |
None. |
|
| PatientId | globally unique identifier |
None. |
|
| Category | string |
None. |
|
| Answers | Collection of Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.SymptomQuestionAnswer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientFileGenericInformationId": "e3a14936-0a3e-44af-946b-4c9282c0f47a",
"CapturedDate": "2025-12-11T01:47:11Z",
"PracticeId": "39dd90b1-56dd-4e1d-b1bc-ca0497ffeb96",
"PatientId": "53a3833f-0f76-464f-8b12-6ba8fbb3c1fe",
"Category": "sample string 5",
"Answers": [
{
"QuestionKey": "sample string 1",
"SymptomId": "sample string 2",
"NoteValue": "sample string 3",
"AnswerValue": "sample string 4",
"Section": "sample string 5",
"Notes": "sample string 6"
},
{
"QuestionKey": "sample string 1",
"SymptomId": "sample string 2",
"NoteValue": "sample string 3",
"AnswerValue": "sample string 4",
"Section": "sample string 5",
"Notes": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<PatientFileGenericInformationVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mpsapi.healthbridge.com/clinical/clinical/v1/PatientFileGenericInformationVo/">
<Answers xmlns:d2p1="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects">
<d2p1:SymptomQuestionAnswer>
<d2p1:AnswerValue>sample string 4</d2p1:AnswerValue>
<d2p1:NoteValue>sample string 3</d2p1:NoteValue>
<d2p1:Notes>sample string 6</d2p1:Notes>
<d2p1:QuestionKey>sample string 1</d2p1:QuestionKey>
<d2p1:Section>sample string 5</d2p1:Section>
<d2p1:SymptomId>sample string 2</d2p1:SymptomId>
</d2p1:SymptomQuestionAnswer>
<d2p1:SymptomQuestionAnswer>
<d2p1:AnswerValue>sample string 4</d2p1:AnswerValue>
<d2p1:NoteValue>sample string 3</d2p1:NoteValue>
<d2p1:Notes>sample string 6</d2p1:Notes>
<d2p1:QuestionKey>sample string 1</d2p1:QuestionKey>
<d2p1:Section>sample string 5</d2p1:Section>
<d2p1:SymptomId>sample string 2</d2p1:SymptomId>
</d2p1:SymptomQuestionAnswer>
</Answers>
<CapturedDate>2025-12-11T01:47:11.5194569+02:00</CapturedDate>
<Category>sample string 5</Category>
<PatientFileGenericInformationId>e3a14936-0a3e-44af-946b-4c9282c0f47a</PatientFileGenericInformationId>
<PatientId>53a3833f-0f76-464f-8b12-6ba8fbb3c1fe</PatientId>
<PracticeId>39dd90b1-56dd-4e1d-b1bc-ca0497ffeb96</PracticeId>
</PatientFileGenericInformationVo>
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": "5994e3b3-3a54-4008-967f-533666cf424f",
"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>5994e3b3-3a54-4008-967f-533666cf424f</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>