Make bulk SMS campaigns, send alerts, appointments or notifications through SMS.
Send messages via automated digital voice calls to any phone number in the world.
Send SMS with certified content, valid as reliable evidence.
Send SMS from your email account, in the same way that you send an email
Run Email Marketing campaigns, automate campaigns and connect with email in an advanced way
Send certified communications with Certified Email from your email account
SMTP server to send emails optimized to enhance your Email Marketing campaigns
Create landing pages for your email campaigns and attract new customers
Create contracts and send them through any channel, sign contracts by handwriting
Generate and send single-use passwords through any channel
Increase the security of your applications by implementing double user authentication
Connect your business with WhatsAPP. Send notifications and talk to your customers
Automate Chat conversations with your customers using chat bots.
Connect with new clients thanks to our Web Chat service
Carry out a quality survey and know the opinion of your customers
Loyalty your customers by sending personalized discount coupons.
Automate Marketing Campaigns and automatically gain loyalty
Generate QR codes completely free of charge from any URL.
Crea landing pages gracias a nuestro editor de landings y envíelas por SMS, Email o usela como desee.
Generate a WhatsAPP web chat for your website compatible with all platforms
Create gorgeous custom forms and legally build databases for your marketing campaigns
Envíe SMS desde su Software con nuestra API
Send Certified SMS, check delivery status and download certificates using our API.
Realice llamadas de forma automática desde su Software
Send and automate the sending of emails through API, connect your software with Email Marketing
Connect with your customers using WhatsAPP through API
Manage the Chat system from API. Access or reply to conversations from our API.
Manage all your account templates, create templates for SMS or Email from our API.
String afilnet_class="template"; String afilnet_method="addtemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_title="title test"; String afilnet_message="title message"; String afilnet_type="mobile"; // Create an URL request WebRequest request = WebRequest.Create("https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&title="+afilnet_title+"&message="+afilnet_message+"&type="+afilnet_type); // Get the response WebResponse response = request.GetResponse (); // Get the stream returned by the server Stream dataStream = response.GetResponseStream(); // Open the stream StreamReader reader = new StreamReader (dataStream); // Read the Response String result = reader.ReadToEnd ();
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "addtemplate"; data["user"] = "user"; data["password"] = "password"; data["title"] = "title test"; data["message"] = "title message"; data["type"] = "mobile"; // Create Web client var wb = new WebClient(); // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "addtemplate"; data["title"] = "title test"; data["message"] = "title message"; data["type"] = "mobile"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/basic/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="template"; String afilnet_method="addtemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_title="title test"; String afilnet_message="title message"; String afilnet_type="mobile"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"title\":\""+afilnet_title+"\",\"message\":\""+afilnet_message+"\",\"type\":\""+afilnet_type+"\"}");
String afilnet_class="template"; String afilnet_method="addtemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_title="title test"; String afilnet_message="title message"; String afilnet_type="mobile"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"title\":\""+afilnet_title+"\",\"message\":\""+afilnet_message+"\",\"type\":\""+afilnet_type+"\"}");String afilnet_class="template"; String afilnet_method="gettemplates"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="mobile"; String afilnet_start="0"; // Create an URL request WebRequest request = WebRequest.Create("https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&type="+afilnet_type+"&start="+afilnet_start); // Get the response WebResponse response = request.GetResponse (); // Get the stream returned by the server Stream dataStream = response.GetResponseStream(); // Open the stream StreamReader reader = new StreamReader (dataStream); // Read the Response String result = reader.ReadToEnd ();
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "gettemplates"; data["user"] = "user"; data["password"] = "password"; data["type"] = "mobile"; data["start"] = "0"; // Create Web client var wb = new WebClient(); // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "gettemplates"; data["type"] = "mobile"; data["start"] = "0"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/basic/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="template"; String afilnet_method="gettemplates"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="mobile"; String afilnet_start="0"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"type\":\""+afilnet_type+"\",\"start\":\""+afilnet_start+"\"}");
String afilnet_class="template"; String afilnet_method="gettemplates"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_type="mobile"; String afilnet_start="0"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"type\":\""+afilnet_type+"\",\"start\":\""+afilnet_start+"\"}");String afilnet_class="template"; String afilnet_method="gettemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idtemplate="1000"; // Create an URL request WebRequest request = WebRequest.Create("https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idtemplate="+afilnet_idtemplate); // Get the response WebResponse response = request.GetResponse (); // Get the stream returned by the server Stream dataStream = response.GetResponseStream(); // Open the stream StreamReader reader = new StreamReader (dataStream); // Read the Response String result = reader.ReadToEnd ();
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "gettemplate"; data["user"] = "user"; data["password"] = "password"; data["idtemplate"] = "1000"; // Create Web client var wb = new WebClient(); // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "gettemplate"; data["idtemplate"] = "1000"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/basic/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="template"; String afilnet_method="gettemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idtemplate="1000"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"idtemplate\":\""+afilnet_idtemplate+"\"}");
String afilnet_class="template"; String afilnet_method="gettemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idtemplate="1000"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"idtemplate\":\""+afilnet_idtemplate+"\"}");String afilnet_class="template"; String afilnet_method="deletetemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idtemplate="1000"; // Create an URL request WebRequest request = WebRequest.Create("https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idtemplate="+afilnet_idtemplate); // Get the response WebResponse response = request.GetResponse (); // Get the stream returned by the server Stream dataStream = response.GetResponseStream(); // Open the stream StreamReader reader = new StreamReader (dataStream); // Read the Response String result = reader.ReadToEnd ();
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "deletetemplate"; data["user"] = "user"; data["password"] = "password"; data["idtemplate"] = "1000"; // Create Web client var wb = new WebClient(); // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
// Asign vars var data = new NameValueCollection(); data["class"] = "template"; data["method"] = "deletetemplate"; data["idtemplate"] = "1000"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/basic/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="template"; String afilnet_method="deletetemplate"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idtemplate="1000"; // Allow SSL/TLS config System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // We create the webservice instance (Register Web Service first in project) var service = new WebService.ApplicationServicesPortTypeClient(); // Call to WebService method String response = service.call(afilnet_user, afilnet_password, afilnet_class, afilnet_method, "{\"idtemplate\":\""+afilnet_idtemplate+"\"}");
Discover the advantages and disadvantages of each of our APIs. Find out which API is best for your Software in C Sharp.
This API allows you to connect to us from C Sharp to send requests via HTTP GET requests. This request sends the parameters in the same URL as the request.
The POST request API allows you to connect to our API from C Sharp by sending request parameters via HTTP POST parameters. The information is sent independently of the URL.
The basic authentication API allows the use of GET and POST requests in C Sharp with an additional security layer, since in this case the username and password are sent in the header of the request.
SOAP allows you to send requests in XML format with C Sharp, SOAP adds an extra layer of security to API requests.
Our JSON API allows you to send requests in JSON format with C Sharp, in addition this API adds the oAuth 2.0 protocol in the authentication that allows you to add an additional layer of security.
In order to have access to the API you must be an Afilnet client. Registration will take a few minutes.
Our company will offer you trial balance that will allow you to test with the API you need.
Perform API integration using the programming language of your choice. If you have any questions or suggestions about the API, contact us
Everything ready!, has managed to improve its communications with Afilnet. We are here to support our API when you need it
Contact our team with any questions through the contact methods that we offer. Our team will try to offer you an immediate solution and will help you in the integration of our API in your Software.
Sign up for free and try Afilnet! We offer you a free trial of our services. *
Company *
Name *
E-mail *
Phone number *
(*) Promotion only valid for companies that have never used the Afilnet service before. When requesting the free balance, Afilnet may request to verify your company information