POST api/v2/{providerId}/clinical/patient/{patientId}/note

Capture patient file notes to be shown on patient timeline

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerId

from where to import

globally unique identifier

Required

patientId

globally unique identifier

Required

Body Parameters

note object

Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects.PatientFileNoteVo
NameDescriptionTypeAdditional information
PatientFileNoteId

globally unique identifier

None.

PracticeId

globally unique identifier

None.

PatientId

globally unique identifier

None.

ParentReferenceId

globally unique identifier

None.

Note

string

None.

Type

string

None.

Format

string

None.

CapturedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientFileNoteId": "7219d6ee-3d8f-4192-a9e9-299f061b7589",
  "PracticeId": "df4f5930-36a3-4e81-b149-1437604ce491",
  "PatientId": "8887b65a-0665-4ecf-8d6a-cf09cc24ae3e",
  "ParentReferenceId": "8ab02bbc-011f-453f-b0f3-3b834287fb99",
  "Note": "sample string 4",
  "Type": "sample string 5",
  "Format": "sample string 6",
  "CapturedDate": "2025-04-14T15:09:33Z"
}

application/xml, text/xml

Sample:
<PatientFileNoteVo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.ValueObjects">
  <CapturedDate>2025-04-14T15:09:33.0918806+02:00</CapturedDate>
  <Format>sample string 6</Format>
  <Note>sample string 4</Note>
  <ParentReferenceId>8ab02bbc-011f-453f-b0f3-3b834287fb99</ParentReferenceId>
  <PatientFileNoteId>7219d6ee-3d8f-4192-a9e9-299f061b7589</PatientFileNoteId>
  <PatientId>8887b65a-0665-4ecf-8d6a-cf09cc24ae3e</PatientId>
  <PracticeId>df4f5930-36a3-4e81-b149-1437604ce491</PracticeId>
  <Type>sample string 5</Type>
</PatientFileNoteVo>

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 'PatientFileNoteVo'.

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": "6ca2abaf-a9c7-46b9-b435-b5231977d447",
  "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>6ca2abaf-a9c7-46b9-b435-b5231977d447</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>