β 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
andPOST
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 π