API-Vorlagen mit Ruby on rails
Verwalten Sie alle Ihre Kontovorlagen, erstellen Sie Vorlagen für SMS oder E-Mail über unsere API.
Vorlage hinzufügen mit Ruby on rails
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="addtemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_title="title test";
afilnet_message="title message";
afilnet_type="mobile";
# Create an URL request
sUrl = "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;
uri = URI(sUrl)
response = Net::HTTP.get(uri)
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="addtemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_title="title test";
afilnet_message="title message";
afilnet_type="mobile";
# 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, "title" => afilnet_title, "message" => afilnet_message, "type" => afilnet_type)
puts response.body
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="addtemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_title="title test";
afilnet_message="title message";
afilnet_type="mobile";
# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&title="+afilnet_title+"&message="+afilnet_message+"&type="+afilnet_type;
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="template";
afilnet_method="addtemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_title="title test";
afilnet_message="title message";
afilnet_type="mobile";
# 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: "{\"title\":\""+afilnet_title+"\",\"message\":\""+afilnet_message+"\",\"type\":\""+afilnet_type+"\"}"
})
puts res.body
Parameter | Beschreibung | Zwigend / optional |
---|---|---|
class=template | Sorte deren Antragen sich realisiert | Zwigend |
method=addtemplate | Sortenmethode deren Antragen sich realisiert | Zwigend |
user | Der User / Email Ihres Afilnet Account | Zwigend |
password | Das password Ihres Afilnet Account | Zwigend |
title | Nachricht Titel | Zwigend |
message | Nachricht | Zwigend |
type | Art der Nachricht (Mögliche Werte: Handy, WhatsApp oder E-Mail) | Zwigend |
Antworten:
- Status
-
result (si status=success), Sie werden die nächsten Codes bekommen:
- Sie werden kein Grenzkosten bekommen
- Fehler (si status=Fehler), hier werden Sie der Fehlercode bekommen
Fehlercodes:
Code | Beschreibung |
---|---|
MISSING_USER | User / email nicht beiliegend |
MISSING_PASSWORD | Password nicht beiliegend |
MISSING_CLASS | Sorten nicht beiliegend |
MISSING_METHOD | Methode nicht beiliegend |
MISSING_COMPULSORY_PARAM | Parameterversicherung nicht beiliegend |
INCORRECT_USER_PASSWORD | User oder Passwort inkorrekt |
INCORRECT_CLASS | Inkorrekt Sorte |
INCORRECT_METHOD | Inkorrekt Methode |
Vorlagen holen mit Ruby on rails
# Savon library is required
require 'savon'
# We define vars
afilnet_class="template";
afilnet_method="addtemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_title="title test";
afilnet_message="title message";
afilnet_type="mobile";
# 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: "{\"title\":\""+afilnet_title+"\",\"message\":\""+afilnet_message+"\",\"type\":\""+afilnet_type+"\"}"
})
puts res.body# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="gettemplates";
afilnet_user="user";
afilnet_password="password";
afilnet_type="mobile";
afilnet_start="0";
# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&type="+afilnet_type+"&start="+afilnet_start;
uri = URI(sUrl)
response = Net::HTTP.get(uri)
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="gettemplates";
afilnet_user="user";
afilnet_password="password";
afilnet_type="mobile";
afilnet_start="0";
# 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, "type" => afilnet_type, "start" => afilnet_start)
puts response.body
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="gettemplates";
afilnet_user="user";
afilnet_password="password";
afilnet_type="mobile";
afilnet_start="0";
# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&type="+afilnet_type+"&start="+afilnet_start;
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="template";
afilnet_method="gettemplates";
afilnet_user="user";
afilnet_password="password";
afilnet_type="mobile";
afilnet_start="0";
# 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: "{\"type\":\""+afilnet_type+"\",\"start\":\""+afilnet_start+"\"}"
})
puts res.body
Parameter | Beschreibung | Zwigend / optional |
---|---|---|
class=template | Sorte deren Antragen sich realisiert | Zwigend |
method=gettemplates | Sortenmethode deren Antragen sich realisiert | Zwigend |
user | Der User / Email Ihres Afilnet Account | Zwigend |
password | Das password Ihres Afilnet Account | Zwigend |
type | Art der Nachricht (Mögliche Werte: Handy, WhatsApp oder E-Mail) | Optional |
start | Die Ergebnisse werden von 50 an 50 zurücktragen, Sie müssen der offset hier angeben | Optional |
Antworten:
- Status
-
result (si status=success), Sie werden die nächsten Codes bekommen:
- Sie werden kein Grenzkosten bekommen
- Fehler (si status=Fehler), hier werden Sie der Fehlercode bekommen
Fehlercodes:
Code | Beschreibung |
---|---|
MISSING_USER | User / email nicht beiliegend |
MISSING_PASSWORD | Password nicht beiliegend |
MISSING_CLASS | Sorten nicht beiliegend |
MISSING_METHOD | Methode nicht beiliegend |
MISSING_COMPULSORY_PARAM | Parameterversicherung nicht beiliegend |
INCORRECT_USER_PASSWORD | User oder Passwort inkorrekt |
INCORRECT_CLASS | Inkorrekt Sorte |
INCORRECT_METHOD | Inkorrekt Methode |
Vorlage mit Ruby on rails abrufen
# Savon library is required
require 'savon'
# We define vars
afilnet_class="template";
afilnet_method="gettemplates";
afilnet_user="user";
afilnet_password="password";
afilnet_type="mobile";
afilnet_start="0";
# 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: "{\"type\":\""+afilnet_type+"\",\"start\":\""+afilnet_start+"\"}"
})
puts res.body# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="gettemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="1000";
# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idtemplate="+afilnet_idtemplate;
uri = URI(sUrl)
response = Net::HTTP.get(uri)
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="gettemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="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, "idtemplate" => afilnet_idtemplate)
puts response.body
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="gettemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="1000";
# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idtemplate="+afilnet_idtemplate;
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="template";
afilnet_method="gettemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="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: "{\"idtemplate\":\""+afilnet_idtemplate+"\"}"
})
puts res.body
Parameter | Beschreibung | Zwigend / optional |
---|---|---|
class=template | Sorte deren Antragen sich realisiert | Zwigend |
method=gettemplate | Sortenmethode deren Antragen sich realisiert | Zwigend |
user | Der User / Email Ihres Afilnet Account | Zwigend |
password | Das password Ihres Afilnet Account | Zwigend |
idtemplate | Vorlagenkennung | Zwigend |
Antworten:
- Status
-
result (si status=success), Sie werden die nächsten Codes bekommen:
- Sie werden kein Grenzkosten bekommen
- Fehler (si status=Fehler), hier werden Sie der Fehlercode bekommen
Fehlercodes:
Code | Beschreibung |
---|---|
MISSING_USER | User / email nicht beiliegend |
MISSING_PASSWORD | Password nicht beiliegend |
MISSING_CLASS | Sorten nicht beiliegend |
MISSING_METHOD | Methode nicht beiliegend |
MISSING_COMPULSORY_PARAM | Parameterversicherung nicht beiliegend |
INCORRECT_USER_PASSWORD | User oder Passwort inkorrekt |
INCORRECT_CLASS | Inkorrekt Sorte |
INCORRECT_METHOD | Inkorrekt Methode |
Vorlagen löschen mit Ruby on rails
# Savon library is required
require 'savon'
# We define vars
afilnet_class="template";
afilnet_method="gettemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="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: "{\"idtemplate\":\""+afilnet_idtemplate+"\"}"
})
puts res.body# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="deletetemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="1000";
# Create an URL request
sUrl = "https://www.afilnet.com/api/http/?class="+afilnet_class+"&method="+afilnet_method+"&user="+afilnet_user+"&password="+afilnet_password+"&idtemplate="+afilnet_idtemplate;
uri = URI(sUrl)
response = Net::HTTP.get(uri)
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="deletetemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="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, "idtemplate" => afilnet_idtemplate)
puts response.body
# net/http library is required
require 'net/http'
afilnet_class="template";
afilnet_method="deletetemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="1000";
# Create an URL request
sUrl = "https://www.afilnet.com/api/basic/?class="+afilnet_class+"&method="+afilnet_method+"&idtemplate="+afilnet_idtemplate;
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="template";
afilnet_method="deletetemplate";
afilnet_user="user";
afilnet_password="password";
afilnet_idtemplate="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: "{\"idtemplate\":\""+afilnet_idtemplate+"\"}"
})
puts res.body
Parameter | Beschreibung | Zwigend / optional |
---|---|---|
class=template | Sorte deren Antragen sich realisiert | Zwigend |
method=deletetemplate | Sortenmethode deren Antragen sich realisiert | Zwigend |
user | Der User / Email Ihres Afilnet Account | Zwigend |
password | Das password Ihres Afilnet Account | Zwigend |
idtemplate | Schablonekennung | Zwigend |
Antworten:
- Status
-
result (si status=success), Sie werden die nächsten Codes bekommen:
- Sie werden kein Grenzkosten bekommen
- Fehler (si status=Fehler), hier werden Sie der Fehlercode bekommen
Fehlercodes:
Code | Beschreibung |
---|---|
MISSING_USER | User / email nicht beiliegend |
MISSING_PASSWORD | Password nicht beiliegend |
MISSING_CLASS | Sorten nicht beiliegend |
MISSING_METHOD | Methode nicht beiliegend |
MISSING_COMPULSORY_PARAM | Parameterversicherung nicht beiliegend |
INCORRECT_USER_PASSWORD | User oder Passwort inkorrekt |
INCORRECT_CLASS | Inkorrekt Sorte |
INCORRECT_METHOD | Inkorrekt Methode |
NOT_ACCESS_TO_TEMPLATE | Sie vom Übergang auf geeignete Schablone nicht disponiert |
ERROR_ASSIGNED_EVENT | Es kann nicht zugewiesen Veranstaltungen Gruppen herauslösen |
Welche API für Ruby on rails soll ich verwenden?
Entdecken Sie die Vor- und Nachteile jeder unserer APIs. Finden Sie heraus, welche API für Ihre Software in Ruby on rails am besten geeignet ist.
Mit dieser API können Sie von Ruby on rails aus eine Verbindung zu uns herstellen, um Anfragen über HTTP GET-Anfragen zu senden. Diese Anfrage sendet die Parameter in derselben URL wie die Anfrage.
- HTTP GET ist extrem einfach zu implementieren
- Informationen werden unverschlüsselt gesendet (Passwörter können aus Protokollen oder Cache extrahiert werden)
- Maximale Anfrage von ~4000 Zeichen
Mit der POST-Anfrage-API können Sie von Ruby on rails aus eine Verbindung zu unserer API herstellen, indem Sie Anfrageparameter über HTTP-POST-Parameter senden. Die Informationen werden unabhängig von der URL gesendet.
- HTTP POST ist einfach zu implementieren
- Informationen werden verschlüsselt gesendet
- Die Größe der Anfrage ist unbegrenzt
- Mittlere Sicherheit
Die grundlegende Authentifizierungs-API ermöglicht die Verwendung von GET- und POST-Anfragen in Ruby on rails mit einer zusätzlichen Sicherheitsschicht, da in diesem Fall der Benutzername und das Passwort im Header der Anfrage gesendet werden.
- Die Basisauthentifizierung ist einfach zu implementieren
- Zugangsdaten werden verschlüsselt gesendet
- Die Größenbeschränkung hängt von der Verwendung von GET oder POST ab
- Mittlere Sicherheit
SOAP ermöglicht es Ihnen, Anfragen im XML-Format mit Ruby on rails zu senden, SOAP fügt API-Anfragen eine zusätzliche Sicherheitsebene hinzu.
- Die SOAP-Integration ist komplexer
- Informationen werden verschlüsselt gesendet
- Die Größe der Anfrage ist unbegrenzt
- Mittlere/hohe Sicherheit
Unsere JSON-API ermöglicht es Ihnen, Anfragen im JSON-Format mit Ruby on rails zu senden, zusätzlich fügt diese API das oAuth 2.0-Protokoll zur Authentifizierung hinzu, mit dem Sie eine zusätzliche Sicherheitsebene hinzufügen können.
- Die JSON oAuth 2.0-Integration ist komplexer
- Informationen werden verschlüsselt gesendet
- Die Größe der Anfrage ist unbegrenzt
- Hohe Sicherheit
Verbinden Sie Ruby on rails mit unserer SCHABLONEN API
Registrieren Sie sich als Kunde
Um Zugriff auf die API zu haben, müssen Sie ein Afilnet-Kunde sein. Die Registrierung dauert einige Minuten.
Fordern Sie Ihre kostenlose Testversion an
Unser Unternehmen bietet Ihnen ein Testguthaben an, mit dem Sie mit der von Ihnen benötigten API testen können.
Integrieren Sie die API
Führen Sie die API-Integration mit der Programmiersprache Ihrer Wahl durch. Wenn Sie Fragen oder Anregungen zur API haben, kontaktieren Sie uns
Willkommen bei Afilnet!
Alles bereit! Hat es geschafft, seine Kommunikation mit Afilnet zu verbessern. Wir sind hier, um unsere API zu unterstützen, wenn Sie sie benötigen
Wenden Sie sich bei Fragen über die von uns angebotenen Kontaktmethoden an unser Team. Unser Team wird versuchen, Ihnen eine sofortige Lösung anzubieten und Ihnen bei der Integration unserer API in Ihre Software helfen.