POST {version}/AddNote
Add Note to Entities
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
version | string |
None. |
Body Parameters
FilterNoteName | 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": "651f668b-6377-4486-8ba6-733b0a6d7a7c", "EntityIds": "sample string 1", "Note": "sample string 2", "NoteDate": "04/03/2025" }
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>651f668b-6377-4486-8ba6-733b0a6d7a7c</FilterId> <Note>sample string 2</Note> <NoteDate>2025-04-03T04:40:52.7180312-04:00</NoteDate> </FilterNote>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
count of entities impacted
ResultName | 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>