Provádějte hromadné SMS kampaně, zasílejte upozornění, schůzky nebo oznámení prostřednictvím SMS.
Odesílejte zprávy prostřednictvím automatizovaných digitálních hlasových hovorů na jakékoli telefonní číslo na světě.
Posílejte SMS s certifikovaným obsahem, platné jako spolehlivý důkaz.
Posílejte SMS ze svého e-mailového účtu stejným způsobem, jakým posíláte e-mail
Spouštějte e-mailové marketingové kampaně, automatizujte kampaně a propojte se s e-mailem pokročilým způsobem
Odesílejte certifikovanou komunikaci s certifikovaným e-mailem ze svého e-mailového účtu
Server SMTP pro odesílání e-mailů optimalizovaný pro vylepšení vašich e-mailových marketingových kampaní
Vytvořte vstupní stránky pro své e-mailové kampaně a přilákejte nové zákazníky
Vytvářejte smlouvy a odesílejte je jakýmkoli kanálem, podepisujte smlouvy ručně
Generujte a odesílejte hesla pro jedno použití prostřednictvím libovolného kanálu
Zvyšte zabezpečení svých aplikací implementací dvojitého ověřování uživatelů
Propojte své podnikání s WhatsAPP. Posílejte oznámení a mluvte se svými zákazníky
Automatizujte chatové konverzace se svými zákazníky pomocí chatovacích robotů.
Spojte se s novými klienty díky naší službě Web Chat
Proveďte průzkum kvality a znáte názor svých zákazníků
Věřte svým zákazníkům zasíláním přizpůsobených slevových kupónů.
Automatizujte marketingové kampaně a automaticky získejte věrnost
Generujte QR kódy zcela zdarma z jakékoli adresy URL.
Vytvořte vstupní stránky díky našemu editoru přistání a posílejte je pomocí SMS, e-mailu nebo použijte, jak si přejete.
Vytvořte pro svůj web webový chat WhatsAPP kompatibilní se všemi platformami
Vytvářejte nádherné vlastní formuláře a legálně sestavujte databáze pro své marketingové kampaně
Odesílejte SMS ze svého softwaru pomocí našeho API
Odesílejte certifikované SMS, kontrolujte stav doručení a stahujte certifikáty pomocí našeho API.
Volejte automaticky ze svého softwaru
Odesílejte a automatizujte odesílání e-mailů přes API, propojte svůj software s e-mailovým marketingem
Spojte se se svými zákazníky pomocí WhatsAPP prostřednictvím API
Spravujte chatovací systém z API. Přístup nebo odpověď na konverzace z našeho API.
String afilnet_class="chat"; String afilnet_method="getchatchannels"; String afilnet_user="user"; String afilnet_password="password"; // 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); // 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"] = "chat"; data["method"] = "getchatchannels"; data["user"] = "user"; data["password"] = "password"; // 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"] = "chat"; data["method"] = "getchatchannels"; // 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="chat"; String afilnet_method="getchatchannels"; String afilnet_user="user"; String afilnet_password="password"; // 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, "{}");
String afilnet_class="chat"; String afilnet_method="getchatchannels"; String afilnet_user="user"; String afilnet_password="password"; // 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, "{}");String afilnet_class="chat"; String afilnet_method="sendmessage"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="3460000000"; String afilnet_message="test+message"; // 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+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination+"&message="+afilnet_message); // 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"] = "chat"; data["method"] = "sendmessage"; data["user"] = "user"; data["password"] = "password"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "3460000000"; data["message"] = "test+message"; // 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"] = "chat"; data["method"] = "sendmessage"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "3460000000"; data["message"] = "test+message"; // 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="chat"; String afilnet_method="sendmessage"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="3460000000"; String afilnet_message="test+message"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"message\":\""+afilnet_message+"\"}");
String afilnet_class="chat"; String afilnet_method="sendmessage"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="3460000000"; String afilnet_message="test+message"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"message\":\""+afilnet_message+"\"}");String afilnet_class="chat"; String afilnet_method="sendfile"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="3460000000"; String afilnet_type="image"; String afilnet_fileurl="https://www.example.com/image.jpg"; String afilnet_thumburl="https://www.example.com/thumb.jpg"; String afilnet_message="test+message"; // 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+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination+"&type="+afilnet_type+"&fileurl="+afilnet_fileurl+"&thumburl="+afilnet_thumburl+"&message="+afilnet_message); // 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"] = "chat"; data["method"] = "sendfile"; data["user"] = "user"; data["password"] = "password"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "3460000000"; data["type"] = "image"; data["fileurl"] = "https://www.example.com/image.jpg"; data["thumburl"] = "https://www.example.com/thumb.jpg"; data["message"] = "test+message"; // 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"] = "chat"; data["method"] = "sendfile"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "3460000000"; data["type"] = "image"; data["fileurl"] = "https://www.example.com/image.jpg"; data["thumburl"] = "https://www.example.com/thumb.jpg"; data["message"] = "test+message"; // 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="chat"; String afilnet_method="sendfile"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="3460000000"; String afilnet_type="image"; String afilnet_fileurl="https://www.example.com/image.jpg"; String afilnet_thumburl="https://www.example.com/thumb.jpg"; String afilnet_message="test+message"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"type\":\""+afilnet_type+"\",\"fileurl\":\""+afilnet_fileurl+"\",\"thumburl\":\""+afilnet_thumburl+"\",\"message\":\""+afilnet_message+"\"}");
String afilnet_class="chat"; String afilnet_method="sendfile"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="3460000000"; String afilnet_type="image"; String afilnet_fileurl="https://www.example.com/image.jpg"; String afilnet_thumburl="https://www.example.com/thumb.jpg"; String afilnet_message="test+message"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"type\":\""+afilnet_type+"\",\"fileurl\":\""+afilnet_fileurl+"\",\"thumburl\":\""+afilnet_thumburl+"\",\"message\":\""+afilnet_message+"\"}");String afilnet_class="chat"; String afilnet_method="getchats"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; // 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+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid); // 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"] = "chat"; data["method"] = "getchats"; data["user"] = "user"; data["password"] = "password"; data["platform"] = "whatsapp"; data["platformid"] = "100"; // 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"] = "chat"; data["method"] = "getchats"; data["platform"] = "whatsapp"; data["platformid"] = "100"; // 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="chat"; String afilnet_method="getchats"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\"}");
String afilnet_class="chat"; String afilnet_method="getchats"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\"}");String afilnet_class="chat"; String afilnet_method="getmessages"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="34600000000"; // 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+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination); // 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"] = "chat"; data["method"] = "getmessages"; data["user"] = "user"; data["password"] = "password"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "34600000000"; // 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"] = "chat"; data["method"] = "getmessages"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "34600000000"; // 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="chat"; String afilnet_method="getmessages"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="34600000000"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\"}");
String afilnet_class="chat"; String afilnet_method="getmessages"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="34600000000"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\"}");String afilnet_class="chat"; String afilnet_method="getunreadmessages"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="34600000000"; // 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+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination); // 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"] = "chat"; data["method"] = "getunreadmessages"; data["user"] = "user"; data["password"] = "password"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "34600000000"; // 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"] = "chat"; data["method"] = "getunreadmessages"; data["platform"] = "whatsapp"; data["platformid"] = "100"; data["destination"] = "34600000000"; // 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="chat"; String afilnet_method="getunreadmessages"; String afilnet_user="user"; String afilnet_password="password"; String afilnet_platform="whatsapp"; String afilnet_platformid="100"; String afilnet_destination="34600000000"; // 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, "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\"}");
Objevte výhody a nevýhody každého z našich API. Zjistěte, které API je pro váš software nejlepší v jazyce C Sharp.
Toto rozhraní API vám umožňuje připojit se k nám z C Sharp a odesílat požadavky prostřednictvím požadavků HTTP GET. Tento požadavek odešle parametry ve stejné adrese URL jako požadavek.
Rozhraní API požadavku POST vám umožňuje připojit se k našemu rozhraní API z C Sharp odesláním parametrů požadavku prostřednictvím parametrů HTTP POST. Informace jsou odesílány nezávisle na URL.
Základní autentizační API umožňuje použití požadavků GET a POST v C Sharp s další vrstvou zabezpečení, protože v tomto případě se uživatelské jméno a heslo zasílají v záhlaví požadavku.
SOAP umožňuje posílat požadavky ve formátu XML s C Sharp, SOAP přidává další vrstvu zabezpečení žádostem API.
Naše JSON API vám umožňuje odesílat požadavky ve formátu JSON s C Sharp, navíc toto API přidává do ověřování protokol oAuth 2.0, který vám umožňuje přidat další vrstvu zabezpečení.
Abyste měli přístup k API, musíte být klientem Afilnetu. Registrace zabere několik minut.
Naše společnost vám nabídne zkušební zůstatek, který vám umožní testovat s API, které potřebujete.
Proveďte integraci API pomocí programovacího jazyka dle vašeho výběru. Pokud máte nějaké dotazy nebo návrhy ohledně API, kontaktujte nás
Vše připraveno !, se podařilo zlepšit komunikaci s Afilnet. Jsme tu, abychom podporovali naše API, když to potřebujete
V případě dotazů kontaktujte náš tým prostřednictvím kontaktních metod, které nabízíme. Náš tým se vám pokusí nabídnout okamžité řešení a pomůže vám s integrací našeho API do vašeho softwaru.
Zaregistrujte se zdarma a vyzkoušejte Afilnet! Nabízíme vám bezplatnou zkušební verzi našich služeb. *
Společnost *
název *
E-mailem *
Telefonní číslo *
(*) Akce platí pouze pro společnosti, které nikdy předtím službu Afilnet nevyužívaly. Při žádosti o bezplatný zůstatek může Afilnet požádat o ověření informací o vaší společnosti