User Management API in Scala lang

Manage user information, know the balance you have in your account and manage your addresses.

Get account balance with Scala lang

val aclass = "user"
val method = "getbalance"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asString
val aclass = "user"
val method = "getbalance"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asString
Parameter Description Compulsory / Optional
class=user Class requested: Class to which the request is made Compulsory
method=getbalance 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
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

Add new address with Scala lang

val aclass = "user"
val method = "getbalance"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asStringval aclass = "user"
val method = "addaddress"
val user = "user"
val password = "password"
val namelastname = "name+lastname"
val iscompany = "1"
val companyname = "mycompany"
val documentid = "123456789A"
val countrycode = "us"
val cityid = "1"
val cityname = "town"
val zipcode = "123456"
val address = "address"
val result = Http("https://www.afilnet.com/api/http/")
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("namelastname", namelastname)
	.param("iscompany", iscompany)
	.param("companyname", companyname)
	.param("documentid", documentid)
	.param("countrycode", countrycode)
	.param("cityid", cityid)
	.param("cityname", cityname)
	.param("zipcode", zipcode)
	.param("address", address)
	.asString
val aclass = "user"
val method = "addaddress"
val user = "user"
val password = "password"
val namelastname = "name+lastname"
val iscompany = "1"
val companyname = "mycompany"
val documentid = "123456789A"
val countrycode = "us"
val cityid = "1"
val cityname = "town"
val zipcode = "123456"
val address = "address"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("namelastname", namelastname)
	.param("iscompany", iscompany)
	.param("companyname", companyname)
	.param("documentid", documentid)
	.param("countrycode", countrycode)
	.param("cityid", cityid)
	.param("cityname", cityname)
	.param("zipcode", zipcode)
	.param("address", address)
	.asString
Parameter Description Compulsory / Optional
class=user Class requested: Class to which the request is made Compulsory
method=addaddress 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
namelastname Name and surname of the contact person Compulsory
iscompany (0) If it is a natural person or (1) if it is a company Compulsory
companyname Name of the company (in case it is a company) Optional
documentid Company identification document code Compulsory
countrycode ISO country code in ISO-3166-1 ALPHA-2 format Compulsory
cityid City identifier Compulsory
cityname Name of the city or town to which it belongs Compulsory
zipcode Postal Code Compulsory
address Physical address 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
EMPTY_COUNTRYCODE The country code is empty
COUNTRY_NOT_FOUND There is no country with the indicated code
EMPTY_CITY You have not indicated the city
CITY_NOT_FOUND The indicated city does not exist

Remove an address with Scala lang

val aclass = "user"
val method = "addaddress"
val user = "user"
val password = "password"
val namelastname = "name+lastname"
val iscompany = "1"
val companyname = "mycompany"
val documentid = "123456789A"
val countrycode = "us"
val cityid = "1"
val cityname = "town"
val zipcode = "123456"
val address = "address"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("namelastname", namelastname)
	.param("iscompany", iscompany)
	.param("companyname", companyname)
	.param("documentid", documentid)
	.param("countrycode", countrycode)
	.param("cityid", cityid)
	.param("cityname", cityname)
	.param("zipcode", zipcode)
	.param("address", address)
	.asStringval aclass = "user"
val method = "deleteaddress"
val user = "user"
val password = "password"
val idaddress = "1000"
val result = Http("https://www.afilnet.com/api/http/")
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("idaddress", idaddress)
	.asString
val aclass = "user"
val method = "deleteaddress"
val user = "user"
val password = "password"
val idaddress = "1000"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("idaddress", idaddress)
	.asString
Parameter Description Compulsory / Optional
class=user Class requested: Class to which the request is made Compulsory
method=deleteaddress 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
idaddress User account address ID 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 the address list with Scala lang

val aclass = "user"
val method = "deleteaddress"
val user = "user"
val password = "password"
val idaddress = "1000"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("idaddress", idaddress)
	.asStringval aclass = "user"
val method = "getaddresses"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asString
val aclass = "user"
val method = "getaddresses"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asString
Parameter Description Compulsory / Optional
class=user Class requested: Class to which the request is made Compulsory
method=getaddresses 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
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • list
      • id
      • namelastname
      • iscompany
      • companyname
      • documentid
      • countrycode
      • cityid
      • cityname
      • zipcode
      • address
      • verified
      • addressverified
  • 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 channel list with Scala lang

val aclass = "user"
val method = "getaddresses"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asStringval aclass = "user"
val method = "getchannels"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asString
val aclass = "user"
val method = "getchannels"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asString
Parameter Description Compulsory / Optional
class=user Class requested: Class to which the request is made Compulsory
method=getchannels 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
Answer:
  • status
  • result (if status=success), here you will receive the following values:
    • list
      • channeltype
      • channelname
      • active
  • 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

Modify the status of a channel with Scala lang

val aclass = "user"
val method = "getchannels"
val user = "user"
val password = "password"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.asStringval aclass = "user"
val method = "modifychannel"
val user = "user"
val password = "password"
val channelname = "sms"
val active = "1"
val result = Http("https://www.afilnet.com/api/http/")
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("channelname", channelname)
	.param("active", active)
	.asString
val aclass = "user"
val method = "modifychannel"
val user = "user"
val password = "password"
val channelname = "sms"
val active = "1"
val result = Http("https://www.afilnet.com/api/http/")
	.postForm
	.param("class", aclass)
	.param("method", method)
	.param("user", user)
	.param("password", password)
	.param("channelname", channelname)
	.param("active", active)
	.asString
Parameter Description Compulsory / Optional
class=user Class requested: Class to which the request is made Compulsory
method=modifychannel 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
channelname Channel name Compulsory
active (1) Enable or (0) Disable 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

Returns the delivery status of certified SMS with PHP Returns the delivery status of certified SMS with Java Returns the delivery status of certified SMS with C Sharp Returns the delivery status of certified SMS with Unix Returns the delivery status of certified SMS with Ruby on rails Returns the delivery status of certified SMS with Python Returns the delivery status of certified SMS with Android Returns the delivery status of certified SMS with Objective C / iPhone Returns the delivery status of certified SMS with SQL Server Returns the delivery status of certified SMS with Oracle Returns the delivery status of certified SMS with Node JS Returns the delivery status of certified SMS with Go lang Returns the delivery status of certified SMS with Scala lang Returns the delivery status of certified SMS with Swift Returns the delivery status of certified SMS with Delphi

Afilnet offers you methods to improve security when using our API with Scala lang, thanks to the possibility of creating accesses and the possibility of activating filtering by IP.

Which API for Scala lang should I use?

Discover the advantages and disadvantages of each of our APIs. Find out which API is best for your Software in Scala lang.

This API allows you to connect to us from Scala lang 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 Scala lang 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 Scala lang 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 Scala lang, 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 Scala lang, 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 Scala lang with our User API

01

Register as a client

In order to have access to the API you must be an Afilnet client. Registration will take a few minutes.

02

Request your free trial

Our company will offer you trial balance that will allow you to test with the API you need.

03

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

04

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.

Try Afilnet for free!

Sign up for free and try Afilnet! We offer you a free trial of our services. *



(*) Promotion only valid for companies that have never used the Afilnet service before. When requesting the free balance, Afilnet may request to verify your company information


Bulk SMS · Email Marketing · Social network · Instant messaging · Certification · and much more
Continue IMPORTANT INFORMATION ABOUT COOKIES: If you continue to use this web we will assume that you accept the terms of use. You will find more information in our Cookies Policy.
Payment methods
Wire transfer
Credit card
Paypal
Western Union
Skrill
Crypto
Afilnet in your language

Copyright © 2024 Afilnet · All rights reserved