DELETE api/SMS_Log/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
SMS_Log| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | globally unique identifier |
None. |
|
| Recepient | string |
None. |
|
| Message | string |
None. |
|
| Send_Datetime | date |
None. |
|
| Status | string |
None. |
|
| Sender_FK | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "f11c18d4-1a8e-4b27-9c10-368f916391f8",
"Recepient": "sample string 2",
"Message": "sample string 3",
"Send_Datetime": "2026-02-24T21:11:03.0568655-07:00",
"Status": "sample string 4",
"Sender_FK": "1d25d81b-55e1-42b3-8cc0-b45b4ef9991b"
}
application/xml, text/xml
Sample:
<SMS_Log xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebSMSAPIV2"> <ID>f11c18d4-1a8e-4b27-9c10-368f916391f8</ID> <Message>sample string 3</Message> <Recepient>sample string 2</Recepient> <Send_Datetime>2026-02-24T21:11:03.0568655-07:00</Send_Datetime> <Sender_FK>1d25d81b-55e1-42b3-8cc0-b45b4ef9991b</Sender_FK> <Status>sample string 4</Status> </SMS_Log>