Use the Login method to log a user in to EBT. Most of the other API methods and some functionality of the website are only available to logged in users.

Input parameters:

my_email user's email address
my_password user's password

Output:

If the login was not successful, false is returned. Otherwise the output is an associative array containing the following elements:
 
sessionid 
username 
my_city user's default city
my_country user's default country
my_zip user's default postal code
totalbills number of entered notes
totalhits number of interesting hits

Example:

https://api.eurobilltracker.com/?m=login&v=2&my_email=some%40email.com&my_password=test

If you don't want the email and password to show up in logs, use the HTTP POST method for email and password:

POST to https://api.eurobilltracker.com/?m=login&v=2
POST data: my_email=some@email.com&my_password=test


Current version: 2

Previous versions: 1

[ back ]