DELETE api/tblMsgs?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
tblMsg| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| OrdId | integer |
None. |
|
| EmpId | integer |
None. |
|
| mType | integer |
None. |
|
| Dt1 | date |
None. |
|
| Dt2 | date |
None. |
|
| mText | string |
None. |
|
| mTitle | string |
None. |
|
| mPhone | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"OrdId": 1,
"EmpId": 1,
"mType": 1,
"Dt1": "2026-03-14T09:48:37.5666118-05:00",
"Dt2": "2026-03-14T09:48:37.5666118-05:00",
"mText": "sample string 3",
"mTitle": "sample string 4",
"mPhone": "sample string 5"
}
application/xml, text/xml
Sample:
<tblMsg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <Dt1>2026-03-14T09:48:37.5666118-05:00</Dt1> <Dt2>2026-03-14T09:48:37.5666118-05:00</Dt2> <EmpId>1</EmpId> <OrdId>1</OrdId> <id>1</id> <mPhone>sample string 5</mPhone> <mText>sample string 3</mText> <mTitle>sample string 4</mTitle> <mType>1</mType> </tblMsg>