POST Offsite/GetNotes?OrderId={OrderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of OrderNote| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Body | string |
None. |
|
| Inserted | date |
None. |
|
| InsertedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Body": "sample string 2",
"Inserted": "2025-12-13T20:21:07.9741616+00:00",
"InsertedBy": "sample string 3"
},
{
"Id": 1,
"Body": "sample string 2",
"Inserted": "2025-12-13T20:21:07.9741616+00:00",
"InsertedBy": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Avertest.Aversys.DataLayer.Offsite">
<OrderNote>
<Body>sample string 2</Body>
<Id>1</Id>
<Inserted>2025-12-13T20:21:07.9741616+00:00</Inserted>
<InsertedBy>sample string 3</InsertedBy>
</OrderNote>
<OrderNote>
<Body>sample string 2</Body>
<Id>1</Id>
<Inserted>2025-12-13T20:21:07.9741616+00:00</Inserted>
<InsertedBy>sample string 3</InsertedBy>
</OrderNote>
</ArrayOfOrderNote>
