POST Note/InsertNote
Request Information
URI Parameters
None.
Body Parameters
NoteInsertRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| NoteTypeId | integer |
None. |
|
| Note | string |
None. |
|
| CreatedUserId | integer |
None. |
|
| PrimaryKeyValue | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"NoteTypeId": 1,
"Note": "sample string 2",
"CreatedUserId": 3,
"PrimaryKeyValue": 4
}
application/xml, text/xml
Sample:
<NoteInsertRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VitaCabinetry.Model.Note"> <CreatedUserId>3</CreatedUserId> <Note>sample string 2</Note> <NoteTypeId>1</NoteTypeId> <PrimaryKeyValue>4</PrimaryKeyValue> </NoteInsertRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />