Faça campanhas de SMS em massa, envie alertas, compromissos ou notificações por SMS.
Envie mensagens por meio de chamadas de voz digital automatizadas para qualquer número de telefone no mundo.
Envie SMS com conteúdo certificado, válido como evidência confiável.
Envie SMS da sua conta de e-mail, da mesma forma que envia um e-mail
Execute campanhas de email marketing, automatize campanhas e conecte-se com email de forma avançada
Envie comunicações certificadas com e- mail certificado de sua conta de e-mail
Servidor SMTP para enviar e-mails otimizado para aprimorar suas campanhas de marketing por e-mail
Crie páginas de destino para suas campanhas de e-mail e atraia novos clientes
Crie contratos e envie-os através de qualquer canal, assine contratos escrevendo à mão
Gere e envie senhas de uso único por meio de qualquer canal
Aumente a segurança de seus aplicativos implementando autenticação dupla de usuário
Conecte sua empresa com o WhatsAPP. Envie notificações e converse com seus clientes
Automatize conversas de chat com seus clientes usando bots de chat.
Conecte-se a novos clientes graças ao nosso serviço de bate-papo na Web
Realize uma pesquisa de qualidade e conheça a opinião de seus clientes
Fidelize seus clientes enviando cupons de desconto personalizados.
Automatize campanhas de marketing e ganhe fidelidade automaticamente
códigos QR totalmente gratuitos em qualquer URL.
Crie páginas de destino graças ao nosso editor de desembarques e envie-as por SMS, e-mail ou use como desejar.
Gere um chat na web WhatsAPP para o seu site compatível com todas as plataformas
Crie lindos formulários personalizados e crie bancos de dados legalmente para suas campanhas de marketing
Envie SMS do seu Software com nossa API
Envie SMS Certificados, verifique o status de entrega e baixe certificados usando nossa API.
Faça chamadas automaticamente a partir do seu software
Envie e automatize o envio de emails através da API, conecte seu software ao Email Marketing
Conecte-se com seus clientes usando WhatsAPP por meio de API
Gerencie o sistema de bate-papo da API. Acesse ou responda a conversas de nossa API.
Gerencie todos os seus modelos de conta, crie modelos para SMS ou Email a partir de nossa 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+"\"}");
Descubra as vantagens e desvantagens de cada uma das nossas APIs. Descubra qual API é melhor para o seu Software em C Sharp.
Essa API permite que você se conecte a nós de C Sharp para enviar solicitações por meio de solicitações HTTP GET. Essa solicitação envia os parâmetros na mesma URL da solicitação.
A API de solicitação POST permite que você se conecte à nossa API de C Sharp enviando parâmetros de solicitação por meio de parâmetros HTTP POST. As informações são enviadas independentemente da URL.
A API de autenticação básica permite o uso de solicitações GET e POST em C Sharp com uma camada de segurança adicional, pois neste caso o nome de usuário e a senha são enviados no cabeçalho da solicitação.
SOAP permite enviar solicitações em formato XML com C Sharp, SOAP adiciona uma camada extra de segurança às solicitações de API.
Nossa API JSON permite enviar solicitações em formato JSON com C Sharp, além disso, essa API adiciona o protocolo oAuth 2.0 na autenticação que permite adicionar uma camada adicional de segurança.
Para ter acesso à API você deve ser um cliente Afilnet. O registro levará alguns minutos.
Nossa empresa lhe oferecerá um balancete que lhe permitirá testar com a API que você precisa.
Realize a integração da API usando a linguagem de programação de sua escolha. Se você tiver dúvidas ou sugestões sobre a API, entre em contato conosco
Tudo pronto!, conseguiu melhorar as suas comunicações com a Afilnet. Estamos aqui para dar suporte à nossa API quando você precisar
Em caso de dúvidas, entre em contato com nossa equipe através dos meios de contato que oferecemos. Nossa equipe tentará lhe oferecer uma solução imediata e lhe ajudará na integração de nossa API em seu Software.
Cadastre-se gratuitamente e experimente Afilnet! Oferecemos a você uma avaliação gratuita de nossos serviços. *
Empresa *
Nome *
Email *
Número de telefone *
(*) Promoção válida apenas para empresas que nunca utilizaram o serviço Afilnet. Ao solicitar o saldo gratuito, a Afilnet pode solicitar a verificação das informações da sua empresa