How to Delete an SMS in F#

The most simple way to send SMS from F# is to use the built in HTTP/Rest SMS api of Ozeki SMS Gateway. When you use this API, you will send SMS messages by issuing a HTTP Post request to the SMS gateway. The HTTP Post request will contain a message formatted in json format. The SMS gateway will send this SMS to the recipient phone, and it will return a HTTP 200 OK response to your request.

deleteing sms messages using f
Figure 1 - Deleteing SMS messages using F#

F# code to delete sms

The F# sms code sample below demonstrates how you can delete SMS using the http rest sms api of Ozeki SMS Gateawy using the F# Ozeki.Libs.Rest library. This library is provided to you free of charge, and you may use it and modify it in any of your projects.

Program.fs
open Ozeki.Libs.Rest

[]
let main argv =
    let configuration = new Configuration (
        Username = "http_user",
        Password = "qwe123",
        ApiUrl = "http://127.0.0.1:9509/api")

    let msg = new Message(
        ID = "ba088274-caac-4e45-bf24-10a446d677e5")

    let api = new MessageApi(configuration)

    let result = api.Delete(Folder.Inbox, msg);

    printfn $"{result}"
    0

How to use the F# sms example:

This F# sms example can be used in any .NET or .NET core application. To use it, you must add the Ozeki.Libs.Rest dll as a reference to your project. After the project reference is added, you must put the using Ozeki.Libs.Rest; directive into the header section of your F# source code. This will allow you to use the classes provided by the Ozeki.Libs.Rest library. You can use the MessageApi class to delete the SMS from the SMS gateway.

Download DeleteSms.fs

The source code explained in this article can be downloaded and used and modified free of charge.
Download: DeleteSms.fs.zip (44.9Kb)

What is in the DeleteSms.fs.zip file?

The DeleteSms.fs.zip file contains the Ozeki.Libs.Rest library, which gives you all the tools neccessary to send, mark, delete and receive SMS messages. You will also find the DeleteSms project in the zip, which contains the example code to show you how to delete an SMS. This example code is listed below.

what is in the ozeki delete sms zip
Figure 2 - What is inside DeleteSms.fs.zip

How to delete SMS from F# (Quick steps)

To delete SMS from F#:

  1. Install Ozeki SMS Gateway
  2. Connect Ozeki SMS Gateway to the mobile network
  3. Send a test sms from Ozeki GUI
  4. Create a HTTP sms api user
  5. Start Visual Studio
  6. Create a solution called DeleteSms.sln
  7. Add a F# console project: DeleteSms.fsproj
  8. Put the code into Program.fs or DeleteSms.fs
  9. Create a http request to delete the SMS
  10. Read the HTTP response
  11. Write the response on the console
  12. Check the logs in the SMS gateway

Install Ozeki SMS Gateway and create an HTTP API user

To be able to delete SMS from F#, first you need to install Ozeki SMS Gateway. The SMS gateway can be installed on the same computer, where you develop your F# code in Visual studio. After installation, the next step is to connect Ozeki SMS Gateway to the mobile network. You can send a test sms from the Ozeki GUI to verify, that your mobile network connection works. The final step to prepare your environment is to create a HTTP sms api user. Create a user with a username of "http_user", and with a password of "qwe123" to make the example work without modification.

After the environment is setup, you can run your F# code.

HTTP API url to use receive sms from F#

To delete SMS from F#, your F# will will have to issue an HTTP request to the SMS gateway. The API url is shown below. Note that the IP address (127.0.0.1) should be replaced to the IP address of your SMS gateway. If Ozeki SMS Gateway is installed on the same computer where the F# sms application is running, this can be 127.0.0.1. If it is installed on a different computer it should be the IP address of that computer.

http://127.0.0.1:9509/api?action=rest
	

HTTP authentication to use delete sms from F#

To authenticate the F# sms client, you need to send the username and password in a base64 encoded string to the server in a HTTP request. The format used is: base64(username+":"+password). In C# you can use the following code to do this encoding:

var encoding = Encoding.GetEncoding("iso-8859-1");
var usernamePassword = username + ":" + password;
var usernamePasswordEncoded = Convert.ToBase64String(encoding.GetBytes(usernamePassword));
	

For example if you encode the username 'http_user' and the password 'qwe123', you will get the following base64 encoded string: aHR0cF91c2VyOnF3ZTEyMw==. To send

HTTP request header to delete SMS from F#

To delete the SMS messages, you need to include the following lines as headers in the HTTP request. Note that we include a content type and an Authorization header.

Content-Type: application/json
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
	

HTTP request to delete SMS using F#

To your request the SMS, your F# application will send an HTTP request similar to the one below. Note, that this requst contains a HTTP header part and a http body part. The HTTP body is a JSON encoded data string. It contains the folder name and the ids of the messages.

POST /api?action=deletemsg HTTP/1.1
Connection: Keep-Alive
Content-Length: 73
Content-Type: application/json
Authorization: Basic aHR0cF91c2VyOnF3ZTEyMw==
Host: 127.0.0.1:9509
{
	"folder":	"inbox",
	"message_ids":	[
		"bc7b1368-b496-4350-ba02-7ba36b770618"
		]
}
	

HTTP response received by the F# sms example

Once the SMS gateway receives this request, it will generate a HTTP response. The HTTP response will contain a status code, to indicate whether the SMS submit request was successful or not. It will also return a JSON encoded structure to provide you useful details about the messages submission.

HTTP/1.1 200 OK
User-Agent: OZEKI 10.3.116 (www.myozeki.com)
Content-Type: application/json; charset=utf8
Last-Modified: Thu, 10 Jun 2021 11:02:26 GMT
Server: 10/10.3.116
Transfer-Encoding: chunked
{
	"http_code": 200,
    "response_code": "SUCCESS",
    "response_msg": "",
    "data": {
      "folder": "inbox",
      "message_ids": [
        "bc7b1368-b496-4350-ba02-7ba36b770618"
      ]
    }
}
	

F# sms example: DeleteSms.sln


How to download and use the DeleteSms project (video tutorial)

In this video, you will learn how to download the example DeleteSms F# project. The video start with the download page and will end on the opened project. You will learn how to download the project and what to do with it to start deleting SMS messages. The video is only 58 seconds long, but it is very helpful. Thanks to being this detailed, you will have no problem following the steps.

Video 1 - How to download and run the example project above

The example code below is part of the DeleteSms.sln Visual Studio Solution. A visual studio solution can contain multiple projects and multiple files. In this solution there are only two projects: DeleteSms.fsproj, Ozeki.Libs.Rest.csproj, and one file: Program.fs.

Figure 3 - DeleteSms.sln

How to use the project to delete messages

In this video, you will learn how to use the project to Delete SMS messages with the help of F#. The video will start with opening the Ozeki SMS Gateway and will take you all the way to checking the empty inbox folder. You will also learn how to open the Events tab and see all the log connected to messaging. The video is only 54 seconds long and very detailed. Due to this you will have no problem following the tutorial.

Video 2 - How to use the DeleteSms.fs solution

Runing the F# sms example on Windows

When you use windows to run this sms example written in F#, you will notice that you get slightly better performance, than when you run it on Linux. To understand why this happens, you must bring into mind that F# is using the .NET framework for code execution. This is because the .NET implementation on Windows is optimized for performance, while mono, the .NET implementation on Linux has some catching up to do in this field.

Summary

This guide showed how to delete messages from your inbox with an F# code and Ozeki SMS Gateway. Deleting messages regularly is vital if you want to manage your storage. If the steps were followed carefully, removing SMS from the inbox with a simple F# code should be simple and fast. Ozeki SMS Gateway is reliable and can be managed very easily, so other functions also can be used in short and easy steps.

Make sure that you don't finish your studies here, check Ozeki's tutorial page and read about topics like SMS scheduling and receiving in F#.

The only thing to do is to download Ozeki SMS Gateway and start working now!

More information