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.
Spravujte své skupiny (vytvářejte, upravujte nebo mažte skupiny) a kontakty pomocí našeho rozhraní API pro kontakty.
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="creategroup"; afilnet_user="user"; afilnet_password="password"; afilnet_name="test name"; afilnet_type="mobile"; afilnet_fields="mobile,name,address"; # Create an URL request sUrl = "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; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="creategroup"; afilnet_user="user"; afilnet_password="password"; afilnet_name="test name"; afilnet_type="mobile"; afilnet_fields="mobile,name,address"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "name" => afilnet_name, "type" => afilnet_type, "fields" => afilnet_fields) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="creategroup"; afilnet_user="user"; afilnet_password="password"; afilnet_name="test name"; afilnet_type="mobile"; afilnet_fields="mobile,name,address"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&name="+afilnet_name+"&type="+afilnet_type+"&fields="+afilnet_fields; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="creategroup"; afilnet_user="user"; afilnet_password="password"; afilnet_name="test name"; afilnet_type="mobile"; afilnet_fields="mobile,name,address"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"name\":\""+afilnet_name+"\",\"type\":\""+afilnet_type+"\",\"fields\":\""+afilnet_fields+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="creategroup"; afilnet_user="user"; afilnet_password="password"; afilnet_name="test name"; afilnet_type="mobile"; afilnet_fields="mobile,name,address"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"name\":\""+afilnet_name+"\",\"type\":\""+afilnet_type+"\",\"fields\":\""+afilnet_fields+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getgroupcolumns"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getgroupcolumns"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getgroupcolumns"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="getgroupcolumns"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="getgroupcolumns"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcolumntogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&field="+afilnet_field; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcolumntogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "field" => afilnet_field) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcolumntogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&field="+afilnet_field; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="addcolumntogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="addcolumntogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletecolumnfromgroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&field="+afilnet_field; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletecolumnfromgroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "field" => afilnet_field) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletecolumnfromgroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&field="+afilnet_field; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="deletecolumnfromgroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="deletecolumnfromgroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_field="name"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"field\":\""+afilnet_field+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletegroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletegroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletegroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="deletegroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="deletegroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="assigncountrytogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_countryiso3="esp"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&countryiso3="+afilnet_countryiso3; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="assigncountrytogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_countryiso3="esp"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "countryiso3" => afilnet_countryiso3) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="assigncountrytogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_countryiso3="esp"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&countryiso3="+afilnet_countryiso3; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="assigncountrytogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_countryiso3="esp"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"countryiso3\":\""+afilnet_countryiso3+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="assigncountrytogroup"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_countryiso3="esp"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"countryiso3\":\""+afilnet_countryiso3+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getcontacts"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getcontacts"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getcontacts"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="getcontacts"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="getcontacts"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "idcontact" => afilnet_idcontact) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="getcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="getcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="getcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contact="mobile:123456789,name:testname"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&contact="+afilnet_contact; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contact="mobile:123456789,name:testname"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "contact" => afilnet_contact) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contact="mobile:123456789,name:testname"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&contact="+afilnet_contact; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="addcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contact="mobile:123456789,name:testname"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"contact\":\""+afilnet_contact+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="addcontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contact="mobile:123456789,name:testname"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"contact\":\""+afilnet_contact+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcontactlist"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&contacts="+afilnet_contacts; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcontactlist"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "contacts" => afilnet_contacts) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="addcontactlist"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&contacts="+afilnet_contacts; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="addcontactlist"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"contacts\":\""+afilnet_contacts+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="addcontactlist"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_contacts="[{"name":"Test","mobile":"34600000000"},{"name":"Test","mobile":"34600000001"}]"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"contacts\":\""+afilnet_contacts+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="modifycontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; afilnet_contact="mobile:123456789,name:testname"; # Create an URL request sUrl = "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; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="modifycontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; afilnet_contact="mobile:123456789,name:testname"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "idcontact" => afilnet_idcontact, "contact" => afilnet_contact) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="modifycontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; afilnet_contact="mobile:123456789,name:testname"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact+"&contact="+afilnet_contact; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="modifycontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; afilnet_contact="mobile:123456789,name:testname"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\",\"contact\":\""+afilnet_contact+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="modifycontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; afilnet_contact="mobile:123456789,name:testname"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\",\"contact\":\""+afilnet_contact+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletecontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletecontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/"; uri = URI(sUrl) response = Net::HTTP.post_form(uri, "class" => afilnet_class, "method" => afilnet_method, "user" => afilnet_user, "password" => afilnet_password, "idgroup" => afilnet_idgroup, "idcontact" => afilnet_idcontact) puts response.body
# net/http library is required require 'net/http' afilnet_class="group"; afilnet_method="deletecontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idgroup="+afilnet_idgroup+"&idcontact="+afilnet_idcontact; uri = URI(sUrl) req = Net::HTTP::Get.new(uri) req.basic_auth afilnet_user, afilnet_password res = Net::HTTP.start(uri.hostname) {|http| http.request(req) } puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="group"; afilnet_method="deletecontact"; afilnet_user="user"; afilnet_password="password"; afilnet_idgroup="1000"; afilnet_idcontact="1000"; # We create the client instance client = Savon.client(wsdl: 'https://www.afilnet.com/api/soap/index.php?wsdl', ssl_verify_mode: :none) # We call to the service res = client.call(:call, message: { user: afilnet_user, password: afilnet_password, class: afilnet_class, method: afilnet_method, petition: "{\"idgroup\":\""+afilnet_idgroup+"\",\"idcontact\":\""+afilnet_idcontact+"\"}" }) puts res.body
Objevte výhody a nevýhody každého z našich API. Zjistěte, které API je pro váš software nejlepší v jazyce Ruby on Rails.
Toto rozhraní API vám umožňuje připojit se k nám z Ruby on Rails 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 Ruby on Rails 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 Ruby on Rails 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 Ruby on Rails, 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 Ruby on Rails, 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