POST api/v1/{practiceId}/clinical/patientdocument/{documentId}/note
Update PatientDocument Note
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
practiceId | globally unique identifier |
Required |
|
documentId | globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Hhas.Clinical.Interface.Commands.UpdatePatientDocumentNoteName | Description | Type | Additional information |
---|---|---|---|
PracticeId | globally unique identifier |
None. |
|
DocumentId | globally unique identifier |
None. |
|
Notes | string |
None. |
|
CorrelationIds | Collection of string |
None. |
|
OriginatedSystem | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "PracticeId": "1ef0f752-7958-4c44-a3dc-f0ab07c15905", "DocumentId": "9c332e30-83ac-4c62-9984-47e7b7f9da9e", "Notes": "sample string 3", "CorrelationIds": [ "sample string 1", "sample string 2" ], "OriginatedSystem": "sample string 4" }
application/xml, text/xml
Sample:
<UpdatePatientDocumentNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.Interface.Commands"> <CorrelationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </CorrelationIds> <OriginatedSystem xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/">sample string 4</OriginatedSystem> <DocumentId>9c332e30-83ac-4c62-9984-47e7b7f9da9e</DocumentId> <Notes>sample string 3</Notes> <PracticeId>1ef0f752-7958-4c44-a3dc-f0ab07c15905</PracticeId> </UpdatePatientDocumentNote>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.BooleanName | Description | Type | Additional information |
---|---|---|---|
Sucess | boolean |
None. |
|
ResponseCode | integer |
None. |
|
ResponseMessage | string |
None. |
|
Data | boolean |
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": true, "Links": [ { "Rel": "sample string 1", "HRef": "sample string 2" }, { "Rel": "sample string 1", "HRef": "sample string 2" } ] }
application/xml, text/xml
Sample:
<RestApiResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects"> <Data>true</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> </RestApiResultOfboolean>