POST api/Medication/NoteInsert
Request Information
URI Parameters
None.
Body Parameters
NoteDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientId | string |
None. |
|
| CategoryId | string |
None. |
|
| Notelist | Collection of Note |
None. |
Request Formats
application/json, text/json
Sample:
{
"PatientId": "sample string 1",
"CategoryId": "sample string 2",
"Notelist": [
{
"NoteId": "sample string 1",
"CategoryId": "sample string 2",
"NoteContent": "sample string 3"
},
{
"NoteId": "sample string 1",
"CategoryId": "sample string 2",
"NoteContent": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<NoteDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Types.Medication">
<CategoryId>sample string 2</CategoryId>
<Notelist>
<Note>
<CategoryId>sample string 2</CategoryId>
<NoteContent>sample string 3</NoteContent>
<NoteId>sample string 1</NoteId>
</Note>
<Note>
<CategoryId>sample string 2</CategoryId>
<NoteContent>sample string 3</NoteContent>
<NoteId>sample string 1</NoteId>
</Note>
</Notelist>
<PatientId>sample string 1</PatientId>
</NoteDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |