Reseller API for Swift
Manage your reseller account with our API for Swift easily and securely. Try our API for Swift for free. Our team will help you manage the clients of your reseller account in Swift.
API functionality to Resellers
Add a subaccount with Swift
let aclass : String = "subaccount";
let method : String = "addsubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let accountpassword : String = "password";
let namelastname : String = "name+lastname";
let iscompany : String = "1";
let companyname : String = "mycompany";
let documentid : String = "123456789A";
let language : String = "en";
let countrycode : String = "us";
let cityid : String = "1";
let cityname : String = "town";
let zipcode : String = "123456";
let address : String = "address";
let urlPath: String = "https://www.afilnet.com/api/http/?class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&accountpassword="+accountpassword+"&namelastname="+namelastname+"&iscompany="+iscompany+"&companyname="+companyname+"&documentid="+documentid+"&language="+language+"&countrycode="+countrycode+"&cityid="+cityid+"&cityname="+cityname+"&zipcode="+zipcode+"&address="+address
let url: NSURL = NSURL(string: urlPath)!
let request1: NSURLRequest = NSURLRequest(url: url as URL)
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as NSError {
print(error.localizedDescription)
}
})
let aclass : String = "subaccount";
let method : String = "addsubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let accountpassword : String = "password";
let namelastname : String = "name+lastname";
let iscompany : String = "1";
let companyname : String = "mycompany";
let documentid : String = "123456789A";
let language : String = "en";
let countrycode : String = "us";
let cityid : String = "1";
let cityname : String = "town";
let zipcode : String = "123456";
let address : String = "address";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&accountpassword="+accountpassword+"&namelastname="+namelastname+"&iscompany="+iscompany+"&companyname="+companyname+"&documentid="+documentid+"&language="+language+"&countrycode="+countrycode+"&cityid="+cityid+"&cityname="+cityname+"&zipcode="+zipcode+"&address="+address
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}
Parameter | Description | Compulsory / Optional |
---|---|---|
class=subaccount | Class requested: Class to which the request is made | Compulsory |
method=addsubaccount | 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 |
accountemail | Account email | Compulsory |
accountpassword | Account password | 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 |
language | Language of the subaccount. See attached table | 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 |
EMPTY_FIELDS | Some mandatory field 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 |
INCORRECT_EMAIL | The email included is not valid |
INCORRECT_PASSWORD | The password included is not valid |
RESELLER_ACCOUNT_REQUIRED | The user's account does not have the reseller plan active |
Modify a subaccount with Swift
let aclass : String = "subaccount";
let method : String = "addsubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let accountpassword : String = "password";
let namelastname : String = "name+lastname";
let iscompany : String = "1";
let companyname : String = "mycompany";
let documentid : String = "123456789A";
let language : String = "en";
let countrycode : String = "us";
let cityid : String = "1";
let cityname : String = "town";
let zipcode : String = "123456";
let address : String = "address";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&accountpassword="+accountpassword+"&namelastname="+namelastname+"&iscompany="+iscompany+"&companyname="+companyname+"&documentid="+documentid+"&language="+language+"&countrycode="+countrycode+"&cityid="+cityid+"&cityname="+cityname+"&zipcode="+zipcode+"&address="+address
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}let aclass : String = "subaccount";
let method : String = "modifysubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let modifypassword : String = "1";
let accountpassword : String = "password";
let namelastname : String = "name+lastname";
let iscompany : String = "1";
let companyname : String = "mycompany";
let documentid : String = "123456789A";
let language : String = "en";
let countrycode : String = "us";
let cityid : String = "1";
let cityname : String = "town";
let zipcode : String = "123456";
let address : String = "address";
let urlPath: String = "https://www.afilnet.com/api/http/?+"&class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&modifypassword="+modifypassword+"&accountpassword="+accountpassword+"&namelastname="+namelastname+"&iscompany="+iscompany+"&companyname="+companyname+"&documentid="+documentid+"&language="+language+"&countrycode="+countrycode+"&cityid="+cityid+"&cityname="+cityname+"&zipcode="+zipcode+"&address="+address
let url: NSURL = NSURL(string: urlPath)!
let request1: NSURLRequest = NSURLRequest(url: url as URL)
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as NSError {
print(error.localizedDescription)
}
})
let aclass : String = "subaccount";
let method : String = "modifysubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let modifypassword : String = "1";
let accountpassword : String = "password";
let namelastname : String = "name+lastname";
let iscompany : String = "1";
let companyname : String = "mycompany";
let documentid : String = "123456789A";
let language : String = "en";
let countrycode : String = "us";
let cityid : String = "1";
let cityname : String = "town";
let zipcode : String = "123456";
let address : String = "address";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&modifypassword="+modifypassword+"&accountpassword="+accountpassword+"&namelastname="+namelastname+"&iscompany="+iscompany+"&companyname="+companyname+"&documentid="+documentid+"&language="+language+"&countrycode="+countrycode+"&cityid="+cityid+"&cityname="+cityname+"&zipcode="+zipcode+"&address="+address
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}
Parameter | Description | Compulsory / Optional |
---|---|---|
class=subaccount | Class requested: Class to which the request is made | Compulsory |
method=modifysubaccount | 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 |
accountemail | Account email | Compulsory |
modifypassword | Compulsory | |
accountpassword | Account password | Optional |
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 |
language | Language of the subaccount. See attached table | 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 |
EMPTY_FIELDS | Some mandatory field 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 |
INCORRECT_EMAIL | The email included is not valid |
INCORRECT_PASSWORD | The password included is not valid |
ACCOUNT_NOT_FOUND | User account has not been found |
Get list of subaccounts with Swift
let aclass : String = "subaccount";
let method : String = "modifysubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let modifypassword : String = "1";
let accountpassword : String = "password";
let namelastname : String = "name+lastname";
let iscompany : String = "1";
let companyname : String = "mycompany";
let documentid : String = "123456789A";
let language : String = "en";
let countrycode : String = "us";
let cityid : String = "1";
let cityname : String = "town";
let zipcode : String = "123456";
let address : String = "address";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&modifypassword="+modifypassword+"&accountpassword="+accountpassword+"&namelastname="+namelastname+"&iscompany="+iscompany+"&companyname="+companyname+"&documentid="+documentid+"&language="+language+"&countrycode="+countrycode+"&cityid="+cityid+"&cityname="+cityname+"&zipcode="+zipcode+"&address="+address
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}let aclass : String = "subaccount";
let method : String = "getsubaccounts";
let user : String = "user";
let password : String = "password";
let urlPath: String = "https://www.afilnet.com/api/http/?+"&class="+aclass+"&method="+method+"&user="+user+"&password="+password
let url: NSURL = NSURL(string: urlPath)!
let request1: NSURLRequest = NSURLRequest(url: url as URL)
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as NSError {
print(error.localizedDescription)
}
})
let aclass : String = "subaccount";
let method : String = "getsubaccounts";
let user : String = "user";
let password : String = "password";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}
Parameter | Description | Compulsory / Optional |
---|---|---|
class=subaccount | Class requested: Class to which the request is made | Compulsory |
method=getsubaccounts | 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 |
Delete a subaccount with Swift
let aclass : String = "subaccount";
let method : String = "getsubaccounts";
let user : String = "user";
let password : String = "password";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}let aclass : String = "subaccount";
let method : String = "deletesubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let urlPath: String = "https://www.afilnet.com/api/http/?+"&class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail
let url: NSURL = NSURL(string: urlPath)!
let request1: NSURLRequest = NSURLRequest(url: url as URL)
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as NSError {
print(error.localizedDescription)
}
})
let aclass : String = "subaccount";
let method : String = "deletesubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}
Parameter | Description | Compulsory / Optional |
---|---|---|
class=subaccount | Class requested: Class to which the request is made | Compulsory |
method=deletesubaccount | 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 |
accountemail | Account 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 |
ACCOUNT_NOT_FOUND | User account has not been found |
Transfer balance to a subaccount with Swift
let aclass : String = "subaccount";
let method : String = "deletesubaccount";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}let aclass : String = "subaccount";
let method : String = "transferbalance";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let balancetotransfer : String = "10";
let urlPath: String = "https://www.afilnet.com/api/http/?+"&class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&balancetotransfer="+balancetotransfer
let url: NSURL = NSURL(string: urlPath)!
let request1: NSURLRequest = NSURLRequest(url: url as URL)
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as NSError {
print(error.localizedDescription)
}
})
let aclass : String = "subaccount";
let method : String = "transferbalance";
let user : String = "user";
let password : String = "password";
let accountemail : String = "email@email.com";
let balancetotransfer : String = "10";
let urlPath: String = "https://www.afilnet.com/api/http/"
let url: NSURL = NSURL(string: urlPath)!
let request1: NSMutableURLRequest = NSMutableURLRequest(url: url as URL)
request1.httpMethod = "POST"
let stringPost="class="+aclass+"&method="+method+"&user="+user+"&password="+password+"&accountemail="+accountemail+"&balancetotransfer="+balancetotransfer
let data = stringPost.data(using: String.Encoding.utf8)
request1.timeoutInterval = 60
request1.httpBody=data
request1.httpShouldHandleCookies=false
let queue:OperationQueue = OperationQueue()
NSURLConnection.sendAsynchronousRequest(request1 as URLRequest, queue: queue, completionHandler:{ (response: URLResponse?, data: Data?, error: Error?) -> Void in
do {
if let jsonResult = try JSONSerialization.jsonObject(with: data!, options: []) as? NSDictionary {
// Do something with result
}
} catch let error as Error {
print(error.localizedDescription)
}
Parameter | Description | Compulsory / Optional |
---|---|---|
class=subaccount | Class requested: Class to which the request is made | Compulsory |
method=transferbalance | 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 |
accountemail | Account email | Compulsory |
balancetotransfer | Indicates the balance to be transferred to the subaccount, a negative value can be used to subtract the balance from the subaccount. | 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 |
ACCOUNT_NOT_FOUND | User account has not been found |
NOT_ENOUGH_BALANCE | ERROR_NOT_ENOUGH_BALANCE |
INCORRECT_MIN_BALANCE | ERROR_INCORRECT_MIN_BALANCE |
Which API for Swift should I use?
Discover the advantages and disadvantages of each of our APIs. Find out which API is best for your Software in Swift.
This API allows you to connect to us from Swift 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 Swift 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 Swift 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 Swift, 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 Swift, 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 Swift with our Subaccounts 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.