Skip to content

βœ… Push Attendance Data to MerciGlobal Cloud ERP

Ensure real-time synchronization and accuracy of your employee attendance records with MerciGlobal Cloud ERP. πŸš€


πŸ”§ Overview

You can seamlessly transmit attendance data from your biometric devices, proximity card readers, desktop software, or custom applications directly into the MerciGlobal Cloud ERP platform.


🌟 Key Features

  • 🟒 Real-Time Sync – Push attendance data instantly to MerciGlobal ERP.
  • πŸ’» Multi-Source Compatibility – Supports input from machines, desktop apps, or web software.
  • 🌐 Language Agnostic – Compatible with PHP, .NET, Python, VB, Embedded Systems, Ruby, and more.

πŸ”— API Endpoint

https://devx.merciglobal.com/apis/ajax_rawpunch.php?proj=PROJ&empcode=EMPCODE&punchdate=yyyy-mm-dd&punchtime=hh:mm&inout=IN_or_OUT

Replace placeholders with actual values as described below.


🧾 Parameters

Parameter Description
PROJ πŸ”Ή Project identifier in Merci ERP
EMPCODE πŸ”Ή Employee code (unique per staff)
punchdate πŸ“… Date of attendance (format: yyyy-mm-dd)
punchtime ⏰ Time of punch (format: hh:mm)
inout πŸšͺ Entry type – must be either IN or OUT

πŸ“Œ Notes

  • βœ… Supports both GET and POST HTTP methods
  • πŸ§‘β€πŸ’» Easily integrated into any programming language
  • βš™οΈ Ideal for use with CURL commands or embedded in hardware systems
  • πŸ“ž For device-based integration, work with your hardware vendor
  • πŸ› οΈ For app-based setup, involve your software development team

πŸ§ͺ Sample CURL Code (GET Method)

$url = "https://devx.merciglobal.com/apis/ajax_rawpunch.php?proj=projectname&empcode=e002&punchdate=yyyy-mm-dd&punchtime=hh:mm&inout=IN_or_OUT";
$curl = curl_init();
curl_setopt_array($curl, array(
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_CUSTOMREQUEST => "GET",
    CURLOPT_POST => 0
));
$response = curl_exec($curl);

πŸ—¨οΈ β€œIntegrating attendance has never been easier!” – The Merci Dev Team πŸ’™