POST api/v2/{providerId}/clinical/patient/{patientId}/note
Capture patient file notes to be shown on patient timeline
Request Information
URI Parameters
| Name | Description | Type | Additional 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| Name | Description | Type | Additional 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": "7e5b1166-6b93-4416-b5af-e7309e4f78a7",
"PracticeId": "c83a9709-b2d3-4a24-abc2-7c9bac271da3",
"PatientId": "cdc76725-2f44-47f1-a560-1bf65ae20e2b",
"ParentReferenceId": "b1fd408d-5a8e-4a5d-a22e-ad0b3725a10e",
"Note": "sample string 4",
"Type": "sample string 5",
"Format": "sample string 6",
"CapturedDate": "2026-02-05T18:08:47Z"
}
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>2026-02-05T18:08:47.597787+02:00</CapturedDate> <Format>sample string 6</Format> <Note>sample string 4</Note> <ParentReferenceId>b1fd408d-5a8e-4a5d-a22e-ad0b3725a10e</ParentReferenceId> <PatientFileNoteId>7e5b1166-6b93-4416-b5af-e7309e4f78a7</PatientFileNoteId> <PatientId>cdc76725-2f44-47f1-a560-1bf65ae20e2b</PatientId> <PracticeId>c83a9709-b2d3-4a24-abc2-7c9bac271da3</PracticeId> <Type>sample string 5</Type> </PatientFileNoteVo>
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": "f69ddf5c-e2fa-4ed5-8c8f-0b24ad7eab7f",
"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>f69ddf5c-e2fa-4ed5-8c8f-0b24ad7eab7f</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>