API templates with Node JS
Manage all your account templates, create templates for SMS or Email from our API.
Add template with Node JS
var aclass = "template";
var method = "addtemplate";
var user = "user";
var password = "password";
var title = "title test";
var message = "title message";
var type = "mobile";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&title='+title+'&message='+message+'&type='+type,
method: 'GET'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
var aclass = "template";
var method = "addtemplate";
var user = "user";
var password = "password";
var title = "title test";
var message = "title message";
var type = "mobile";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&title='+title+'&message='+message+'&type='+type,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
Parameter | Description | Compulsory / Optional |
---|---|---|
class=template | Class requested: Class to which the request is made | Compulsory |
method=addtemplate | Class method requested: Method of the class to which the request is made | Compulsory |
user | User and e-mail of your Afilnet account | Compulsory |
password | Password of your Afilnet account | Compulsory |
title | Message title | Compulsory |
message | Message | Compulsory |
type | Type of message (Possible values: mobile, whatsapp or email) | Compulsory |
Answer:
- status
-
result (if status=success), here you will receive the following values:
- No additional values will be sent to you
- error (if status=error), here you will receive the error code
Error codes:
Code | Description |
---|---|
MISSING_USER | User or email not included |
MISSING_PASSWORD | Password not included |
MISSING_CLASS | Class not included |
MISSING_METHOD | Method not included |
MISSING_COMPULSORY_PARAM | Compulsory parameter not included |
INCORRECT_USER_PASSWORD | Incorrect user or password |
INCORRECT_CLASS | Incorrect class |
INCORRECT_METHOD | Incorrect method |
Get templates with Node JS
var aclass = "template";
var method = "addtemplate";
var user = "user";
var password = "password";
var title = "title test";
var message = "title message";
var type = "mobile";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&title='+title+'&message='+message+'&type='+type,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()var aclass = "template";
var method = "gettemplates";
var user = "user";
var password = "password";
var type = "mobile";
var start = "0";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?+'&class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&type='+type+'&start='+start,
method: 'GET'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
var aclass = "template";
var method = "gettemplates";
var user = "user";
var password = "password";
var type = "mobile";
var start = "0";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&type='+type+'&start='+start,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
Parameter | Description | Compulsory / Optional |
---|---|---|
class=template | Class requested: Class to which the request is made | Compulsory |
method=gettemplates | Class method requested: Method of the class to which the request is made | Compulsory |
user | User and e-mail of your Afilnet account | Compulsory |
password | Password of your Afilnet account | Compulsory |
type | Type of message (Possible values: mobile, whatsapp or email) | Optional |
start | Results are returned in 50s, you must indicate the offset here | Optional |
Answer:
- status
-
result (if status=success), here you will receive the following values:
- No additional values will be sent to you
- error (if status=error), here you will receive the error code
Error codes:
Code | Description |
---|---|
MISSING_USER | User or email not included |
MISSING_PASSWORD | Password not included |
MISSING_CLASS | Class not included |
MISSING_METHOD | Method not included |
MISSING_COMPULSORY_PARAM | Compulsory parameter not included |
INCORRECT_USER_PASSWORD | Incorrect user or password |
INCORRECT_CLASS | Incorrect class |
INCORRECT_METHOD | Incorrect method |
Get template with Node JS
var aclass = "template";
var method = "gettemplates";
var user = "user";
var password = "password";
var type = "mobile";
var start = "0";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&type='+type+'&start='+start,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()var aclass = "template";
var method = "gettemplate";
var user = "user";
var password = "password";
var idtemplate = "1000";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?+'&class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&idtemplate='+idtemplate,
method: 'GET'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
var aclass = "template";
var method = "gettemplate";
var user = "user";
var password = "password";
var idtemplate = "1000";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&idtemplate='+idtemplate,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
Parameter | Description | Compulsory / Optional |
---|---|---|
class=template | Class requested: Class to which the request is made | Compulsory |
method=gettemplate | Class method requested: Method of the class to which the request is made | Compulsory |
user | User and e-mail of your Afilnet account | Compulsory |
password | Password of your Afilnet account | Compulsory |
idtemplate | template identifier | Compulsory |
Answer:
- status
-
result (if status=success), here you will receive the following values:
- No additional values will be sent to you
- error (if status=error), here you will receive the error code
Error codes:
Code | Description |
---|---|
MISSING_USER | User or email not included |
MISSING_PASSWORD | Password not included |
MISSING_CLASS | Class not included |
MISSING_METHOD | Method not included |
MISSING_COMPULSORY_PARAM | Compulsory parameter not included |
INCORRECT_USER_PASSWORD | Incorrect user or password |
INCORRECT_CLASS | Incorrect class |
INCORRECT_METHOD | Incorrect method |
Delete template with Node JS
var aclass = "template";
var method = "gettemplate";
var user = "user";
var password = "password";
var idtemplate = "1000";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&idtemplate='+idtemplate,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()var aclass = "template";
var method = "deletetemplate";
var user = "user";
var password = "password";
var idtemplate = "1000";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?+'&class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&idtemplate='+idtemplate,
method: 'GET'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
var aclass = "template";
var method = "deletetemplate";
var user = "user";
var password = "password";
var idtemplate = "1000";
const https = require('https')
const options = {
hostname: 'afilnet.com',
port: 443,
path: '/api/http/?class='+aclass+'&method='+method+'&user='+user+'&password='+password+'&idtemplate='+idtemplate,
method: 'POST'
}
const req = https.request(options, res => {
res.on('data', d => {
// Do something
})
})
req.on('error', error => {
console.error(error)
})
req.end()
Parameter | Description | Compulsory / Optional |
---|---|---|
class=template | Class requested: Class to which the request is made | Compulsory |
method=deletetemplate | Class method requested: Method of the class to which the request is made | Compulsory |
user | User and e-mail of your Afilnet account | Compulsory |
password | Password of your Afilnet account | Compulsory |
idtemplate | Template identifier | Compulsory |
Answer:
- status
-
result (if status=success), here you will receive the following values:
- No additional values will be sent to you
- error (if status=error), here you will receive the error code
Error codes:
Code | Description |
---|---|
MISSING_USER | User or email not included |
MISSING_PASSWORD | Password not included |
MISSING_CLASS | Class not included |
MISSING_METHOD | Method not included |
MISSING_COMPULSORY_PARAM | Compulsory parameter not included |
INCORRECT_USER_PASSWORD | Incorrect user or password |
INCORRECT_CLASS | Incorrect class |
INCORRECT_METHOD | Incorrect method |
NOT_ACCESS_TO_TEMPLATE | You haven't access to the selected template |
ERROR_ASSIGNED_EVENT | you can't delete the group because exists events associated to this group |
Which API for Node JS should I use?
Discover the advantages and disadvantages of each of our APIs. Find out which API is best for your Software in Node JS.
This API allows you to connect to us from Node JS to send requests via HTTP GET requests. This request sends the parameters in the same URL as the request.
- HTTP GET is extremely simple to implement
- Information is sent unencrypted (passwords could be extracted from logs or cache)
- Maximum request of ~4000 characters
The POST request API allows you to connect to our API from Node JS by sending request parameters via HTTP POST parameters. The information is sent independently of the URL.
- HTTP POST is simple to implement
- Information is sent encrypted
- There is no limit on the size of the request
- Medium security
The basic authentication API allows the use of GET and POST requests in Node JS with an additional security layer, since in this case the username and password are sent in the header of the request.
- Basic authentication is easy to implement
- Access data is sent encrypted
- The size limit depends on the use of GET or POST
- Medium security
SOAP allows you to send requests in XML format with Node JS, SOAP adds an extra layer of security to API requests.
- SOAP integration is more complex
- Information is sent encrypted
- There is no limit on the size of the request
- Medium / High security
Our JSON API allows you to send requests in JSON format with Node JS, in addition this API adds the oAuth 2.0 protocol in the authentication that allows you to add an additional layer of security.
- JSON oAuth 2.0 integration is more complex
- Information is sent encrypted
- There is no limit on the size of the request
- High security
Connect Node JS with our TEMPLATES API
Register as a client
In order to have access to the API you must be an Afilnet client. Registration will take a few minutes.
Request your free trial
Our company will offer you trial balance that will allow you to test with the API you need.
Integrate the API
Perform API integration using the programming language of your choice. If you have any questions or suggestions about the API, contact us
Welcome to Afilnet!
Everything ready!, has managed to improve its communications with Afilnet. We are here to support our API when you need it
Contact our team with any questions through the contact methods that we offer. Our team will try to offer you an immediate solution and will help you in the integration of our API in your Software.