POST api/notes
POST: api/notes Create notes
Request Information
URI Parameters
None.
Body Parameters
CreateNoteViewModelName | Description | Type | Additional information |
---|---|---|---|
ReferenceId |
Id of object that the note will be related |
integer |
Required Range: inclusive between 1 and 2147483647 |
Note |
Note description |
string |
Required Max length: 500 Min length: 3 |
NoteType |
Note type |
NoteReferenceTypeEnum |
Required |
Request Formats
application/json, text/json
{ "referenceId": 1, "note": "sample string 2", "noteType": 1 }
application/xml, text/xml
<CreateNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.Notes"> <Note>sample string 2</Note> <NoteType>Policy</NoteType> <ReferenceId>1</ReferenceId> </CreateNoteViewModel>
application/x-www-form-urlencoded
Response Information
Resource Description
GenericNoteViewModel
GenericNoteViewModelName | Description | Type | Additional information |
---|---|---|---|
ReferenceObjectId |
|
integer |
None. |
ReferenceObjectType |
|
NoteReferenceTypeEnum |
None. |
Path |
|
string |
None. |
CreatedBy |
CreatedBy |
string |
None. |
Id |
Id |
integer |
None. |
Note |
Note |
string |
None. |
IsSystemGenerated |
IsSystemGenerated |
boolean |
None. |
CreatedOn |
CreatedOn |
date |
None. |
Response Formats
application/json, text/json
{ "referenceObjectId": 1, "referenceObjectType": 1, "path": "sample string 2", "createdBy": "sample string 3", "id": 4, "note": "sample string 5", "isSystemGenerated": true, "createdOn": "2025-04-03T17:35:42.6454934-04:00" }
application/xml, text/xml
<GenericNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.Notes"> <CreatedOn>2025-04-03T17:35:42.6454934-04:00</CreatedOn> <Id>4</Id> <IsSystemGenerated>true</IsSystemGenerated> <Note>sample string 5</Note> <CreatedBy>sample string 3</CreatedBy> <Path>sample string 2</Path> <ReferenceObjectId>1</ReferenceObjectId> <ReferenceObjectType>Policy</ReferenceObjectType> </GenericNoteViewModel>