DELETE api/ordNote/{id}
Delete a single record from the Notes table.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ordNoteDb| Name | Description | Type | Additional information |
|---|---|---|---|
| NoteID | integer |
None. |
|
| NoteTypeID | NoteType |
Required |
|
| OrderID | integer |
Required |
|
| ItemID | integer |
None. |
|
| ItemType | OrdLinkType |
None. |
|
| InvoiceID | integer |
None. |
|
| FreightLegID | integer |
None. |
|
| FreightPayableID | integer |
None. |
|
| FreightFeeID | integer |
None. |
|
| FreightHandlingID | integer |
None. |
|
| TaskID | integer |
None. |
|
| TrackingID | integer |
None. |
|
| WarehouseAlertID | integer |
None. |
|
| QuoteID | integer |
None. |
|
| WONumber | integer |
None. |
|
| Note | string |
Required |
|
| ClientVisible | boolean |
None. |
|
| IsRead | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| CreatedDate | date |
None. |
|
| UpdatedBy | integer |
None. |
|
| UpdatedDate | date |
None. |
|
| results | Collection of ValidationResult |
None. |
Response Formats
application/json, text/json
Sample:
{
"results": null,
"NoteID": 1,
"NoteTypeID": 0,
"OrderID": 2,
"ItemID": 1,
"ItemType": 1,
"InvoiceID": 1,
"FreightLegID": 1,
"FreightPayableID": 1,
"FreightFeeID": 1,
"FreightHandlingID": 1,
"TaskID": 1,
"TrackingID": 1,
"WarehouseAlertID": 1,
"QuoteID": 1,
"WONumber": 1,
"Note": "sample string 3",
"ClientVisible": true,
"IsRead": true,
"CreatedBy": 6,
"CreatedDate": "2025-12-06T23:43:09.8405113+00:00",
"UpdatedBy": 8,
"UpdatedDate": "2025-12-06T23:43:09.8405113+00:00"
}
application/xml, text/xml
Sample:
<ordNoteDb 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>6</CreatedBy>
<CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:43:09.8405113Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</CreatedDate>
<FreightFeeID>1</FreightFeeID>
<FreightHandlingID>1</FreightHandlingID>
<FreightLegID>1</FreightLegID>
<FreightPayableID>1</FreightPayableID>
<InvoiceID>1</InvoiceID>
<IsRead>true</IsRead>
<ItemID>1</ItemID>
<ItemType>Order</ItemType>
<Note>sample string 3</Note>
<NoteID>1</NoteID>
<NoteTypeID>All</NoteTypeID>
<OrderID>2</OrderID>
<QuoteID>1</QuoteID>
<TaskID>1</TaskID>
<TrackingID>1</TrackingID>
<UpdatedBy>8</UpdatedBy>
<UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>2025-12-06T23:43:09.8405113Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</UpdatedDate>
<WONumber>1</WONumber>
<WarehouseAlertID>1</WarehouseAlertID>
</ordNoteDb>