一括SMSキャンペーンを作成し、SMSを介してアラート、予定、または通知を送信します。
自動化されたデジタル音声通話を介して、世界中の任意の電話番号にメッセージを送信します。
信頼できる証拠として有効な、認定されたコンテンツを含むSMSを送信します。
メールを送信するのと同じ方法で、メールアカウントからSMSを送信します
Eメールマーケティングキャンペーンを実行し、キャンペーンを自動化し、高度な方法でEメールに接続します
メールアカウントからCertifiedEmailで認定通信を送信します
Eメールマーケティングキャンペーンを強化するために最適化されたEメールを送信するSMTPサーバー
メールキャンペーンのランディングページを作成し、新しい顧客を引き付けます
契約書を作成して任意のチャネルに送信し、手書きで契約書に署名します
任意のチャネルを介してシングルユースパスワードを生成して送信する
ダブルユーザー認証を実装して、アプリケーションのセキュリティを強化します
あなたのビジネスをWhatsAPPで接続します。通知を送信し、顧客と話します
チャットボットを使用して、顧客とのチャット会話を自動化します。
Web Chatサービスのおかげで新しいクライアントとつながる
品質調査を実施し、顧客の意見を知る
パーソナライズされた割引クーポンを送信することにより、顧客のロイヤルティを高めます。
マーケティングキャンペーンを自動化し、自動的に忠誠心を獲得します
任意のURLから完全に無料でQRコードを生成します。
ランディングエディターのおかげでランディングページを作成し、SMS、電子メールで送信するか、必要に応じて使用します。
すべてのプラットフォームと互換性のあるWebサイト用のWhatsAPPWebチャットを生成します
豪華なカスタム フォームを作成し、合法的にマーケティング キャンペーン用のデータベースを構築します。
API を使用してソフトウェアから SMS を送信する
認定 SMS を送信し、配信ステータスを確認し、API を使用して証明書をダウンロードします。
ソフトウェアから自動的に電話をかける
APIを介した電子メールの送信と送信の自動化、ソフトウェアとEmail Marketingの接続
APIを介してWhatsAPPを使用して顧客とつながる
API からチャット システムを管理します。 API から会話にアクセスしたり、会話に返信したりします。
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getchatchannels"; afilnet_user="user"; afilnet_password="password"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getchatchannels"; afilnet_user="user"; afilnet_password="password"; # 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) puts response.body
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getchatchannels"; afilnet_user="user"; afilnet_password="password"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method; 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="chat"; afilnet_method="getchatchannels"; afilnet_user="user"; afilnet_password="password"; # 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: "{}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="chat"; afilnet_method="getchatchannels"; afilnet_user="user"; afilnet_password="password"; # 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: "{}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="sendmessage"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_message="test+message"; # Create an URL request sUrl = "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; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="sendmessage"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_message="test+message"; # 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, "platform" => afilnet_platform, "platformid" => afilnet_platformid, "destination" => afilnet_destination, "message" => afilnet_message) puts response.body
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="sendmessage"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_message="test+message"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination+"&message="+afilnet_message; 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="chat"; afilnet_method="sendmessage"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_message="test+message"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"message\":\""+afilnet_message+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="chat"; afilnet_method="sendmessage"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_message="test+message"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"message\":\""+afilnet_message+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="sendfile"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_type="image"; afilnet_fileurl="https://www.example.com/image.jpg"; afilnet_thumburl="https://www.example.com/thumb.jpg"; afilnet_message="test+message"; # Create an URL request sUrl = "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; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="sendfile"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_type="image"; afilnet_fileurl="https://www.example.com/image.jpg"; afilnet_thumburl="https://www.example.com/thumb.jpg"; afilnet_message="test+message"; # 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, "platform" => afilnet_platform, "platformid" => afilnet_platformid, "destination" => afilnet_destination, "type" => afilnet_type, "fileurl" => afilnet_fileurl, "thumburl" => afilnet_thumburl, "message" => afilnet_message) puts response.body
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="sendfile"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_type="image"; afilnet_fileurl="https://www.example.com/image.jpg"; afilnet_thumburl="https://www.example.com/thumb.jpg"; afilnet_message="test+message"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination+"&type="+afilnet_type+"&fileurl="+afilnet_fileurl+"&thumburl="+afilnet_thumburl+"&message="+afilnet_message; 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="chat"; afilnet_method="sendfile"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_type="image"; afilnet_fileurl="https://www.example.com/image.jpg"; afilnet_thumburl="https://www.example.com/thumb.jpg"; afilnet_message="test+message"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"type\":\""+afilnet_type+"\",\"fileurl\":\""+afilnet_fileurl+"\",\"thumburl\":\""+afilnet_thumburl+"\",\"message\":\""+afilnet_message+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="chat"; afilnet_method="sendfile"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="3460000000"; afilnet_type="image"; afilnet_fileurl="https://www.example.com/image.jpg"; afilnet_thumburl="https://www.example.com/thumb.jpg"; afilnet_message="test+message"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\",\"type\":\""+afilnet_type+"\",\"fileurl\":\""+afilnet_fileurl+"\",\"thumburl\":\""+afilnet_thumburl+"\",\"message\":\""+afilnet_message+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getchats"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; # Create an URL request sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getchats"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; # 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, "platform" => afilnet_platform, "platformid" => afilnet_platformid) puts response.body
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getchats"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid; 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="chat"; afilnet_method="getchats"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="chat"; afilnet_method="getchats"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # Create an URL request sUrl = "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; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # 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, "platform" => afilnet_platform, "platformid" => afilnet_platformid, "destination" => afilnet_destination) puts response.body
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination; 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="chat"; afilnet_method="getmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\"}" }) puts res.body
# Savon library is required require 'savon' # We define vars afilnet_class="chat"; afilnet_method="getmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\"}" }) puts res.body# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getunreadmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # Create an URL request sUrl = "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; uri = URI(sUrl) response = Net::HTTP.get(uri)
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getunreadmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # 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, "platform" => afilnet_platform, "platformid" => afilnet_platformid, "destination" => afilnet_destination) puts response.body
# net/http library is required require 'net/http' afilnet_class="chat"; afilnet_method="getunreadmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # Create an URL request sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&platform="+afilnet_platform+"&platformid="+afilnet_platformid+"&destination="+afilnet_destination; 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="chat"; afilnet_method="getunreadmessages"; afilnet_user="user"; afilnet_password="password"; afilnet_platform="whatsapp"; afilnet_platformid="100"; afilnet_destination="34600000000"; # 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: "{\"platform\":\""+afilnet_platform+"\",\"platformid\":\""+afilnet_platformid+"\",\"destination\":\""+afilnet_destination+"\"}" }) puts res.body
各APIの長所と短所をご覧ください。 Ruby on railsで、ソフトウェアに最適なAPIを見つけてください。
このAPIを使用すると、Ruby on railsから接続して、HTTPGETリクエストを介してリクエストを送信できます。このリクエストは、リクエストと同じURLでパラメータを送信します。
POSTリクエストAPIを使用すると、HTTP POSTパラメータを介してリクエストパラメータを送信することで、Ruby on railsからAPIに接続できます。情報はURLとは関係なく送信されます。
基本認証APIを使用すると、Ruby on railsでGETおよびPOSTリクエストを使用でき、セキュリティレイヤーが追加されます。この場合、ユーザー名とパスワードがリクエストのヘッダーで送信されるためです。
SOAPを使用すると、Ruby on railsを使用してXML形式でリクエストを送信できます。SOAPを使用すると、APIリクエストにセキュリティの層が追加されます。
JSON APIを使用すると、Ruby on railsを使用してJSON形式でリクエストを送信できます。さらに、このAPIを使用すると、認証にoAuth 2.0プロトコルが追加され、セキュリティのレイヤーを追加できます。
APIにアクセスするには、Afilnetクライアントである必要があります。登録には数分かかります。
当社は、必要なAPIでテストできる試算表を提供します。
選択したプログラミング言語を使用してAPI統合を実行します。 APIについて質問や提案がある場合は、お問い合わせください
すべて準備完了!、Afilnetとの通信を改善することに成功しました。必要なときにAPIをサポートするためにここにいます
私たちが提供する連絡方法を通じて、質問がある場合は私たちのチームに連絡してください。私たちのチームはあなたに即時の解決策を提供しようとし、あなたのソフトウェアへの私たちのAPIの統合を支援します。
無料でサインアップして、Afilnetをお試しください!私たちはあなたに私たちのサービスの無料トライアルを提供します。 *
会社 *
名 *
Eメール *
電話番号 *
(*) プロモーションは、これまでAfilnetサービスを使用したことがない企業にのみ有効です。フリーバランスをリクエストする際、Afilnetはあなたの会社情報の確認をリクエストする場合があります