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": "2eaa1458-d043-4f8f-80cd-6b594fcef9df",
"Recepient": "sample string 2",
"Message": "sample string 3",
"Send_Datetime": "2026-04-07T15:15:19.3237725-07:00",
"Status": "sample string 4",
"Sender_FK": "d7b3e3c7-a644-4a8c-ade2-ca8f223e8435"
}
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>2eaa1458-d043-4f8f-80cd-6b594fcef9df</ID> <Message>sample string 3</Message> <Recepient>sample string 2</Recepient> <Send_Datetime>2026-04-07T15:15:19.3237725-07:00</Send_Datetime> <Sender_FK>d7b3e3c7-a644-4a8c-ade2-ca8f223e8435</Sender_FK> <Status>sample string 4</Status> </SMS_Log>