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": "9d0b7fa6-81fe-451d-9f28-f2328ad0ff67", "CapturedDate": "2025-06-19T02:58:43Z", "PracticeId": "62b80c15-4130-49b2-9af7-f22276736505", "PatientId": "b61e8573-2811-4747-8e92-7bb34a0827f9", "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-06-19T02:58:43.8621506+02:00</CapturedDate> <Category>sample string 5</Category> <PatientFileGenericInformationId>9d0b7fa6-81fe-451d-9f28-f2328ad0ff67</PatientFileGenericInformationId> <PatientId>b61e8573-2811-4747-8e92-7bb34a0827f9</PatientId> <PracticeId>62b80c15-4130-49b2-9af7-f22276736505</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": "752b2a2f-ab19-444a-a64d-a3d16b93607d", "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>752b2a2f-ab19-444a-a64d-a3d16b93607d</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>