POST api/Provider/Patient/V1/Notes
Request Information
URI Parameters
None.
Body Parameters
PatientNotesViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| PatientID | integer |
Required |
|
| ProviderID | integer |
Required |
|
| Title | string |
Required String length: inclusive between 0 and 100 |
|
| Notes | string |
Required |
|
| CreatedDate | date |
None. |
|
| UpdatedDate | date |
None. |
|
| SubmittedDate | string |
None. |
|
| StrCreatedDate | string |
None. |
|
| StrUpdatedDate | string |
None. |
|
| SubmittedDateTime | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"PatientID": 2,
"ProviderID": 3,
"Title": "sample string 4",
"Notes": "sample string 5",
"CreatedDate": "2025-10-26T07:41:57.5473615+00:00",
"UpdatedDate": "2025-10-26T07:41:57.5473615+00:00",
"SubmittedDate": "sample string 7",
"StrCreatedDate": "sample string 8",
"StrUpdatedDate": "sample string 9",
"SubmittedDateTime": "2025-10-26T07:41:57.5473615+00:00"
}
application/xml, text/xml
Sample:
<PatientNotesViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Services.ViewModels.ProviderViewModels"> <CreatedDate>2025-10-26T07:41:57.5473615+00:00</CreatedDate> <ID>1</ID> <Notes>sample string 5</Notes> <PatientID>2</PatientID> <ProviderID>3</ProviderID> <StrCreatedDate>sample string 8</StrCreatedDate> <StrUpdatedDate>sample string 9</StrUpdatedDate> <SubmittedDate>sample string 7</SubmittedDate> <SubmittedDateTime>2025-10-26T07:41:57.5473615+00:00</SubmittedDateTime> <Title>sample string 4</Title> <UpdatedDate>2025-10-26T07:41:57.5473615+00:00</UpdatedDate> </PatientNotesViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ActionResultViewModelOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| StatusCode | integer |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Result | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"StatusCode": 1,
"Success": true,
"Message": "sample string 3",
"Result": "sample string 4"
}
application/xml, text/xml
Sample:
<ActionResultViewModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Web.ViewModels.ResultViewModels"> <Message>sample string 3</Message> <Result>sample string 4</Result> <StatusCode>1</StatusCode> <Success>true</Success> </ActionResultViewModelOfstring>