Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Not only do we provide extensive integration via API’s and CSV with front and back office systems, we also offer integration with other 3rd parties such as mobile app providers, agency websites, managed service systems and agency client time and attendance systems.

...

For FULL details of our Webservices API please use the following link:-  Webservices API


Single Sign-On

It is possible for users to be automatically signed into InTime from, for instance, your website portals for clients or candidates or for consultants via your CRM system.  The web services interface allows external systems to request a token from InTime. The external site adds this token onto the URL when the user clicks through to an InTime link within the 3rd party system.  InTime will then automatically log the user in without the need for the user to enter a further username or password.

...

  1. Your application requests an access token from the InTime web services
    authenticate(java.lang.String agencyRefCode, java.lang.String username, java.lang.String password)
  2. Your application requests a login token for a particular user
    getSingleSignOnToken(java.lang.String token, java.lang.String username, int timeToLiveSeconds)
  3. Your application creates a URL to your InTime site.  The token retrieve in stage 2 is placed on the URL
    https://timesheets.yoursite.com?ticket=xxxxxxxxxxxxxx

...