DELETE api/orgNote/{itemType}/{itemID}
Delete all notes attached to this item of this type from the Notes table.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| itemType | OrgItemType |
Required |
|
| itemID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
orgNoteDb| Name | Description | Type | Additional information |
|---|---|---|---|
| NoteID | integer |
None. |
|
| NoteTypeID | byte |
Required |
|
| EntityID | integer |
None. |
|
| PlaceID | integer |
None. |
|
| PersonID | integer |
None. |
|
| EmailID | integer |
None. |
|
| MediaID | integer |
None. |
|
| PhoneID | integer |
None. |
|
| Note | string |
Required |
|
| ClientVisible | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"NoteID": 1,
"NoteTypeID": 64,
"EntityID": 1,
"PlaceID": 1,
"PersonID": 1,
"EmailID": 1,
"MediaID": 1,
"PhoneID": 1,
"Note": "sample string 3",
"ClientVisible": true,
"CreatedBy": 5,
"CreatedDate": "2025-12-06T23:37:48.0934599+00:00"
}
application/xml, text/xml
Sample:
<orgNoteDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Models">
<results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
<ClientVisible>true</ClientVisible>
<CreatedBy>5</CreatedBy>
<CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:37:48.0934599Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</CreatedDate>
<EmailID>1</EmailID>
<EntityID>1</EntityID>
<MediaID>1</MediaID>
<Note>sample string 3</Note>
<NoteID>1</NoteID>
<NoteTypeID>64</NoteTypeID>
<PersonID>1</PersonID>
<PhoneID>1</PhoneID>
<PlaceID>1</PlaceID>
</orgNoteDb>