POST {version}/AddNote
Add Note to Entities
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version | string |
None. |
Body Parameters
FilterNote| Name | Description | Type | Additional information |
|---|---|---|---|
| FilterId | globally unique identifier |
None. |
|
| EntityIds | string |
None. |
|
| Note | string |
None. |
|
| NoteDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FilterId": "e6167f4a-da7b-46cd-9dbe-ac028f67aabf",
"EntityIds": "sample string 1",
"Note": "sample string 2",
"NoteDate": "01/27/2026"
}
application/xml, text/xml
Sample:
<FilterNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model.Contact"> <EntityIds>sample string 1</EntityIds> <FilterId>e6167f4a-da7b-46cd-9dbe-ac028f67aabf</FilterId> <Note>sample string 2</Note> <NoteDate>2026-01-27T00:24:24.0059678-05:00</NoteDate> </FilterNote>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
count of entities impacted
Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Count | integer |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Count": 1,
"Success": true
}
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aristotle.CM.Model"> <Count>1</Count> <Success>true</Success> </Result>