POST api/v2/{providerId}/clinical/patient/genericinformation/{patientId}/revise

Add/Update patient file generic information

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

globally unique identifier

Required

patientId

globally unique identifier

Required

Body Parameters

Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PatientFileGenericInformationVo
NameDescriptionTypeAdditional 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": "eb6dac7f-a255-4089-849d-10816384558d",
  "CapturedDate": "2025-09-12T20:26:04Z",
  "PracticeId": "2e45dd6d-e741-4ba0-b197-cc15d53b9bcd",
  "PatientId": "0488487f-beb8-4d45-8a06-40c1b74b6915",
  "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-09-12T20:26:04.875881+02:00</CapturedDate>
  <Category>sample string 5</Category>
  <PatientFileGenericInformationId>eb6dac7f-a255-4089-849d-10816384558d</PatientFileGenericInformationId>
  <PatientId>0488487f-beb8-4d45-8a06-40c1b74b6915</PatientId>
  <PracticeId>2e45dd6d-e741-4ba0-b197-cc15d53b9bcd</PracticeId>
</PatientFileGenericInformationVo>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'PatientFileGenericInformationVo'.

Response Information

Resource Description

Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Guid
NameDescriptionTypeAdditional 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": "4b14c609-057b-4a86-a313-298e5a7f6bb4",
  "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>4b14c609-057b-4a86-a313-298e5a7f6bb4</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>