4

I want to develop attendance system for office where employees give the attendance using finger print, I need to buy bio metric device, and i want to save the attendance data only in my cloud database. No other person should be able to access that data. How do I capture the user that has clocked in via the attendance and save their data in database.

Which is a suitable device for this? Any biometric device that provides call back to my url with the user details when attendance is recorded?

Joseph
  • 789
  • 1
  • 9
  • 23
Pradeep Charan
  • 653
  • 2
  • 7
  • 28

1 Answers1

3

CAMS supports the Web API for the the biometric machines which can be integrated with a website or any internet web application. It provides RESTful APIs and Callback API for various operations with biometric machines. You can get the detailed information from biometric Web API.

According to CAMS, An URL should be submitted along with the machine. Once the URL is associated, whenever the attendance gets registered, the submitted URL will be called automatically. Now user can maintain the records in their database and use them for generating reports.

The URL will be called whenever a new attendance gets registered with the following parameters in POST

  • stgid - service tag id, means machine id,
  • userid - numerical user id
  • att_time - timestamp of attendance date & time
  • att_type - i/o ==> i for check in, and o for check out

The URL should return "ok" in the response once it processed the attendance record. If "ok" is not returned, the URL will be called every time again and again with the same attendance records. If the URL's web server is down, the attendance records will try to reach the URL in every 30 seconds.

HAYMbl4
  • 1,450
  • 2
  • 15
  • 29
Ravanan
  • 536
  • 2
  • 13
  • CAMS with API is still in development phase. I have just talked to them. Any other devices with the same kind of functionality? – Ketan Vaghasiya Aug 09 '18 at 05:11
  • Hello Ketan, The API details mentioned in the answer is available in market for last 4 years. Lots of video with odoo integration, cloud integration and etc., are available in the youtube too. – Ravanan Aug 09 '18 at 14:09
  • Hello Ketan, http://camsunit.com/application/html-based-fingerprint-scanner-for-website-authentication-and-attendance.html is the API documentation for the fingerprint scanner integration with web application from CAMS – Ravanan Sep 28 '18 at 14:45