DELETE api/tblOrds?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
tblOrd| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| oDate | date |
None. |
|
| Num | integer |
None. |
|
| CustId | integer |
None. |
|
| EmpId | integer |
None. |
|
| Tot | decimal number |
None. |
|
| Fee | decimal number |
None. |
|
| Src | string |
None. |
|
| Sts | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"oDate": "2025-12-31T10:58:13.6909022-06:00",
"Num": 3,
"CustId": 4,
"EmpId": 5,
"Tot": 6.1,
"Fee": 7.1,
"Src": "sample string 8",
"Sts": 9
}
application/xml, text/xml
Sample:
<tblOrd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <CustId>4</CustId> <EmpId>5</EmpId> <Fee>7.1</Fee> <Id>1</Id> <Num>3</Num> <Src>sample string 8</Src> <Sts>9</Sts> <Tot>6.1</Tot> <oDate>2025-12-31T10:58:13.6909022-06:00</oDate> </tblOrd>