Projjex API

Authentication Methods
Overview

The Login method returns an authentication token that can be used for the duration of the login session. Logins are valid until the Logout method is called, or until 30 minutes of inactivity have passed.

Methods
Login
URL: http://api.projjex.com/login/
Parameters
Name Description Required
Email The email address of the account. Yes
Password The password of the account. Yes
Example
http://api.projjex.com/login/?Email=user@domain.com&Password=12345
Sample XML Response
<Login Session="UJ0X23LRZPR1AFX5YKF4" Firstname="John" Lastname="Smith"/>
Sample JSON Response
handleProjjexData({ "Login": {"Firstname": "John", "Lastname": "Smith", "Session": "UJ0X23LRZPR1AFX5YKF4" }});
Logout
URL: http://api.projjex.com/logout/
Parameters
Name Description Required
Session The session token that you are terminating. Yes
Example
http://api.projjex.com/logout/?Session=UJ0X23LRZPR1AFX5YKF4
Sample XML Response
<Logout successful="true" />
Sample JSON Response
handleProjjexData({ "Logout": {"successful": "true" }});
Quick Links
Support

.NET developers can download our .NET API Wrapper. The wrapper simplifies using the Projjex™ API by returning .NET objects.

API Methods