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.PatientFileGenericInformationVoName | 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": "de226ce1-41b4-4fcc-9945-28bd39226797", "CapturedDate": "2025-07-10T16:13:39Z", "PracticeId": "914e1c15-811d-4278-b3ad-72b30f8e790b", "PatientId": "c47bbdf7-5b8f-48af-97ac-ab2b987e4cef", "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-07-10T16:13:39.2517183+02:00</CapturedDate> <Category>sample string 5</Category> <PatientFileGenericInformationId>de226ce1-41b4-4fcc-9945-28bd39226797</PatientFileGenericInformationId> <PatientId>c47bbdf7-5b8f-48af-97ac-ab2b987e4cef</PatientId> <PracticeId>914e1c15-811d-4278-b3ad-72b30f8e790b</PracticeId> </PatientFileGenericInformationVo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.GuidName | 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": "985b66bc-1464-45fa-8dc4-8b3fec04e504", "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>985b66bc-1464-45fa-8dc4-8b3fec04e504</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>