Integrate our features SMS sending and tracking via API to your business applications and get started quickly with a reliable professional SMS platform in a few lines of code.
Send premium SMS to the Metropolitan France from 0.04 euros excl. VAT and the international with an SMS platform!
var client = new RestClient("https://extranet.efidem.com/api/v1/sms");
client.Timeout = -1;
var request = new RestRequest(Method.POST);
request.AddHeader("ApiKey", "EF.xxxxxxxxxxxxxxxxxx");
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""Destination"": ""0601020304"",
" + "\n" +
@" ""Texte"": ""Test SMS from REST API"",
" + "\n" +
@" ""OADC"": """"
" + "\n" +
@"}";
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
An SMS platform Simple and robust, easily integrated and offering many features in addition to sending, such as SMS text analysis, encoding, number of messages, etc.
The REST API facilitates integration thanks to its structure perfectly taken into account in multiple languages and development frameworks.
For a simple email, send one to multiple SMS. Multiple features are available to you, such as customization of status types (taken into account, delivered, and/or canceled) that the message sender will receive.
Be it from your messaging (Outlook, Exchange, Gmail...) or via a simple email generated by code, you will be able to easily send your SMS.
var mailMessage = new MailMessage
{
From = new MailAddress("from@client.com"),
Subject = "Follow-up Subject",
Body = "SMS Message Test",
IsBodyHtml = false,
};
mailMessage.To.Add("sms=0601020304@gateway.efidem.com");
smtpClient.Send(mailMessage);
using var client = new HttpClient();
var content = await client.GetStringAsync
("https://efisend.efidem.com/web/sendsms.aspx?user=[user]&pwd=[pwd]&emetteur=[from]&numero=[destination]&message=[message]");
A simple URL request to send your messages. Fast and efficient. Perfectly suited for website needs to make an SMS sending request.
string ftpFilePath = "ftp://ftp.website.com/file.json";
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(ftpFilePath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
request.Credentials = new NetworkCredential("username", "password");
string fileContents = null;
try
{
using (FtpWebResponse response = (FtpWebResponse)request.GetResponse())
{
Stream responseStream = response.GetResponseStream();
using (StreamReader reader = new StreamReader(responseStream))
{
fileContents = reader.ReadToEnd();
}
}
}
catch(Exception e)
{
//handle the error
}
Our highly available & scalable systems are secure. Your data is hosted in mainland France
Deferred date, split campaign, custom sender, you can finely parameterize each send
Track your SMS messages with real-time status updates accessible via API or the monitoring platform SnapShoot
add the destination URL to which PUSHER the update of SMS statuses automatically in real time
Send your SMS in a mass or single campaign in manual or automatic mode
As soon as a message's status is changed, we send the information to the provided URL to update it.
Une plateforme Web en mode SaaS responsive pour monitorer vos envois où que vous soyez !
Accédez à tous les canaux disponibles, créez, suivez et gérez vos campagnes par API et en mode Push Marketing.
3, Rue de Téhéran 75008 Paris - Hosted & developed in France - Designed by developers for developers
©EFIDEM SAS - All rights reserved - 2021
Générez une clé API et testez les solutions efidem sans limites .
Tous les champs sont requis.
Accédez à la documentation API SMS RESTful en renseignant votre email professionnel
Accédez à la documentation API SMS SMTP en renseignant votre email professionnel
Accédez à la documentation API SMS HTTPS en renseignant votre email professionnel
Accédez à la documentation API SMS S/FTP en renseignant votre email professionnel