Tehke hulgi SMS- kampaaniaid, saatke SMS-ide kaudu teateid, kohtumisi või teateid.
Saatke sõnumeid automatiseeritud digitaalkõnede kaudu ükskõik millisele telefoninumbrile maailmas.
Saada sertifitseeritud sisuga SMS, mis on usaldusväärne tõendusmaterjal.
Saatke SMS- e oma e-posti kontolt samamoodi nagu teie e-posti
Käivitage e-posti turunduskampaaniad, automatiseerige kampaaniaid ja ühendage e-postiga täpsemalt
Saatke oma e-posti kontolt sertifitseeritud meiliga sertifitseeritud suhtlust
SMTP-server e- posti turunduskampaaniate täiustamiseks optimeeritud meilide saatmiseks
Looge oma e-posti kampaaniate jaoks sihtlehed ja meelitage uusi kliente
Looge lepingud ja saatke need mis tahes kanali kaudu, allkirjastage lepingud käsitsi
Looge ja saatke ühekordselt kasutatavaid paroole mis tahes kanali kaudu
Suurendage oma rakenduste turvalisust, rakendades topeltkasutaja autentimist
Ühendage oma ettevõte WhatsAPP-ga. Saatke märguandeid ja rääkige oma klientidega
Automatiseerige oma klientidega vestlusvestlusi vestlusrobotite abil.
Uute klientidega saate ühendust tänu meie veebivestlusteenusele
Viige läbi kvaliteediuuring ja teadke oma klientide arvamust
Lojaalsus oma klientidele, saates isikupärastatud sooduskuponge.
Automatiseerige turunduskampaaniad ja saavutage automaatselt lojaalsus
Genereerige QR-koodid täiesti tasuta ükskõik milliselt URL-ilt.
Looge maandumislehed tänu meie maanduste redigeerijale ja saatke need SMS-i, e-posti teel või kasutage vastavalt soovile.
Looge oma veebisaidile WhatsAPP-i veebivestlus, mis ühildub kõigi platvormidega
Looge oma turunduskampaaniate jaoks suurepäraseid kohandatud vorme ja seaduslikult andmebaase
Saatke oma tarkvarast SMS-i meie API-ga
Saatke sertifitseeritud SMS-i, kontrollige kohaletoimetamise olekut ja laadige alla sertifikaadid meie API abil.
Helistage oma tarkvarast automaatselt
Saatke ja automatiseerige meilide saatmist API kaudu, ühendage oma tarkvara e-posti turundusega
Võtke ühendust oma klientidega, kasutades API kaudu WhatsAPP-d
Hallake vestlussüsteemi API kaudu. Juurdepääs vestlustele või neile vastamine meie API kaudu.
Hallake oma gruppe (looge, muutke või kustutage rühmi) ja kontakte meie kontaktide API-ga.
String afilnet_class="group"; String afilnet_method="creategroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_name="test name"; String afilnet_type="mobile"; String afilnet_fields="mobile,name,address"; // 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+"&name="+afilnet_name+"&type="+afilnet_type+"&fields="+afilnet_fields); // 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"] = "group"; data["method"] = "creategroup"; data["user"] = "user"; data["password"] = "password"; data["name"] = "test name"; data["type"] = "mobile"; data["fields"] = "mobile,name,address"; // 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"] = "group"; data["method"] = "creategroup"; data["name"] = "test name"; data["type"] = "mobile"; data["fields"] = "mobile,name,address"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="creategroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_name="test name"; String afilnet_type="mobile"; String afilnet_fields="mobile,name,address"; // 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, "{\"name\":\""+afilnet_name+"\",\"type\":\""+afilnet_type+"\",\"fields\":\""+afilnet_fields+"\"}");
String afilnet_class="group"; String afilnet_method="creategroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_name="test name"; String afilnet_type="mobile"; String afilnet_fields="mobile,name,address"; // 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, "{\"name\":\""+afilnet_name+"\",\"type\":\""+afilnet_type+"\",\"fields\":\""+afilnet_fields+"\"}");String afilnet_class="group"; String afilnet_method="getgroupcolumns"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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+"&idgroup="+afilnet_idgroup); // 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"] = "group"; data["method"] = "getgroupcolumns"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "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"] = "group"; data["method"] = "getgroupcolumns"; data["idgroup"] = "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/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="getgroupcolumns"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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, "{\"idgroup\":\""+afilnet_idgroup+"\"}");
String afilnet_class="group"; String afilnet_method="getgroupcolumns"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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, "{\"idgroup\":\""+afilnet_idgroup+"\"}");String afilnet_class="group"; String afilnet_method="addcolumntogroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_field="name"; // 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+"&idgroup="+afilnet_idgroup+"&field="+afilnet_field); // 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"] = "group"; data["method"] = "addcolumntogroup"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["field"] = "name"; // 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"] = "group"; data["method"] = "addcolumntogroup"; data["idgroup"] = "1000"; data["field"] = "name"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="addcolumntogroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_field="name"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}");
String afilnet_class="group"; String afilnet_method="addcolumntogroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_field="name"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}");String afilnet_class="group"; String afilnet_method="deletecolumnfromgroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_field="name"; // 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+"&idgroup="+afilnet_idgroup+"&field="+afilnet_field); // 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"] = "group"; data["method"] = "deletecolumnfromgroup"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["field"] = "name"; // 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"] = "group"; data["method"] = "deletecolumnfromgroup"; data["idgroup"] = "1000"; data["field"] = "name"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="deletecolumnfromgroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_field="name"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}");
String afilnet_class="group"; String afilnet_method="deletecolumnfromgroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_field="name"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}");String afilnet_class="group"; String afilnet_method="deletegroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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+"&idgroup="+afilnet_idgroup); // 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"] = "group"; data["method"] = "deletegroup"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "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"] = "group"; data["method"] = "deletegroup"; data["idgroup"] = "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/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="deletegroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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, "{\"idgroup\":\""+afilnet_idgroup+"\"}");
String afilnet_class="group"; String afilnet_method="deletegroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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, "{\"idgroup\":\""+afilnet_idgroup+"\"}");String afilnet_class="group"; String afilnet_method="assigncountrytogroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_countryiso3="esp"; // 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+"&idgroup="+afilnet_idgroup+"&countryiso3="+afilnet_countryiso3); // 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"] = "group"; data["method"] = "assigncountrytogroup"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["countryiso3"] = "esp"; // 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"] = "group"; data["method"] = "assigncountrytogroup"; data["idgroup"] = "1000"; data["countryiso3"] = "esp"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="assigncountrytogroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_countryiso3="esp"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"countryiso3\":\""+afilnet_countryiso3+"\"}");
String afilnet_class="group"; String afilnet_method="assigncountrytogroup"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_countryiso3="esp"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"countryiso3\":\""+afilnet_countryiso3+"\"}");String afilnet_class="group"; String afilnet_method="getcontacts"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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+"&idgroup="+afilnet_idgroup); // 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"] = "group"; data["method"] = "getcontacts"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "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"] = "group"; data["method"] = "getcontacts"; data["idgroup"] = "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/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="getcontacts"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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, "{\"idgroup\":\""+afilnet_idgroup+"\"}");
String afilnet_class="group"; String afilnet_method="getcontacts"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="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, "{\"idgroup\":\""+afilnet_idgroup+"\"}");String afilnet_class="group"; String afilnet_method="getcontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="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+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact); // 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"] = "group"; data["method"] = "getcontact"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["idcontact"] = "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"] = "group"; data["method"] = "getcontact"; data["idgroup"] = "1000"; data["idcontact"] = "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/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="getcontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\"}");
String afilnet_class="group"; String afilnet_method="getcontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\"}");String afilnet_class="group"; String afilnet_method="addcontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_contact="mobile:123456789,name:testname"; // 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+"&idgroup="+afilnet_idgroup+"&contact="+afilnet_contact); // 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"] = "group"; data["method"] = "addcontact"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["contact"] = "mobile:123456789,name:testname"; // 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"] = "group"; data["method"] = "addcontact"; data["idgroup"] = "1000"; data["contact"] = "mobile:123456789,name:testname"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="addcontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_contact="mobile:123456789,name:testname"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"contact\":\""+afilnet_contact+"\"}");
String afilnet_class="group"; String afilnet_method="addcontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_contact="mobile:123456789,name:testname"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"contact\":\""+afilnet_contact+"\"}");String afilnet_class="group"; String afilnet_method="addcontactlist"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; // 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+"&idgroup="+afilnet_idgroup+"&contacts="+afilnet_contacts); // 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"] = "group"; data["method"] = "addcontactlist"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["contacts"] = "[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; // 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"] = "group"; data["method"] = "addcontactlist"; data["idgroup"] = "1000"; data["contacts"] = "[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="addcontactlist"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"contacts\":\""+afilnet_contacts+"\"}");
String afilnet_class="group"; String afilnet_method="addcontactlist"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"contacts\":\""+afilnet_contacts+"\"}");String afilnet_class="group"; String afilnet_method="modifycontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="1000"; String afilnet_contact="mobile:123456789,name:testname"; // 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+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact+"&contact="+afilnet_contact); // 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"] = "group"; data["method"] = "modifycontact"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["idcontact"] = "1000"; data["contact"] = "mobile:123456789,name:testname"; // 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"] = "group"; data["method"] = "modifycontact"; data["idgroup"] = "1000"; data["idcontact"] = "1000"; data["contact"] = "mobile:123456789,name:testname"; // Create Web client var wb = new WebClient { Credentials = new NetworkCredential("user", "password") }; // Execute POST petition var response = wb.UploadValues("https://www.afilnet.com/api/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="modifycontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="1000"; String afilnet_contact="mobile:123456789,name:testname"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\",\"contact\":\""+afilnet_contact+"\"}");
String afilnet_class="group"; String afilnet_method="modifycontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="1000"; String afilnet_contact="mobile:123456789,name:testname"; // 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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\",\"contact\":\""+afilnet_contact+"\"}");String afilnet_class="group"; String afilnet_method="deletecontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="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+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact); // 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"] = "group"; data["method"] = "deletecontact"; data["user"] = "user"; data["password"] = "password"; data["idgroup"] = "1000"; data["idcontact"] = "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"] = "group"; data["method"] = "deletecontact"; data["idgroup"] = "1000"; data["idcontact"] = "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/http/", "POST", data); // Get response string responseString = Encoding.UTF8.GetString(response);
String afilnet_class="group"; String afilnet_method="deletecontact"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_idgroup="1000"; String afilnet_idcontact="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, "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\"}");
Avastage iga meie API eelised ja puudused. Uurige välja, milline API on teie tarkvara jaoks parim keeles C sharp.
See API võimaldab teil meiega ühenduse luua keelest C sharp, et saata päringuid HTTP GET-päringute kaudu. See päring saadab parameetrid päringuga samas URL-is.
POST-i päringu API võimaldab teil luua ühenduse meie API-ga keelest C sharp, saates päringu parameetrid HTTP POST-i parameetrite kaudu. Teave saadetakse URL-ist sõltumatult.
Põhiline autentimise API võimaldab kasutada GET- ja POST-päringuid keeles C sharp koos täiendava turvakihiga, kuna sel juhul saadetakse kasutajanimi ja parool päringu päisesse.
SOAP võimaldab saata päringuid XML-vormingus keelega C sharp, SOAP lisab API päringutele täiendava turvakihi.
Meie JSON API võimaldab teil saata taotlusi JSON-vormingus keelega C sharp, lisaks lisab see API autentimisse oAuth 2.0 protokolli, mis võimaldab teil lisada täiendava turvakihi.
API-le juurdepääsu saamiseks peate olema Afilneti klient. Registreerimine võtab paar minutit.
Meie ettevõte pakub teile proovibilanssi, mis võimaldab teil testida vajaliku API-ga.
Tehke API integreerimine teie valitud programmeerimiskeelega. Kui teil on API kohta küsimusi või ettepanekuid, võtke meiega ühendust
Kõik, mis on valmis!, Suudetakse parandada oma suhtlust Afilnetiga. Oleme siin, et toetada meie API-d, kui seda vajate
Kui teil on küsimusi, pöörduge meie meeskonna poole meie pakutavate kontaktmeetodite kaudu. Meie meeskond püüab pakkuda teile kohest lahendust ja aitab teil meie API teie tarkvarasse integreerida.
Registreeruge tasuta ja proovige Afilnetit! Pakume teile meie teenuste tasuta prooviversiooni. *
Firma *
Nimi *
E-post *
Telefoninumber *
(*) Kampaania kehtib ainult ettevõtetele, kes pole varem Afilneti teenust kasutanud. Tasuta saldo taotlemisel võib Afilnet nõuda teie ettevõtte teabe kinnitamist