Skip to main content

Complete Attendance Management for Your Organization

Integra provides enterprise-grade time tracking, employee management, and reporting tools to streamline workforce operations across multiple locations.

Quick Start

Get up and running with Integra in minutes

1

Authenticate with the API

Obtain a JWT token by sending your credentials to the authentication endpoint.
cURL
curl -X POST https://api.integra.example/auth/login \
  -H "Content-Type: application/json" \
  -d '{
    "username": "your-username",
    "password": "your-password"
  }'
{
  "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "type": "Bearer",
  "expiresIn": 3600
}
2

Record Employee Attendance

Use the attendance endpoint to clock employees in and out.
cURL
curl -X POST https://api.integra.example/asistencia/iniciar \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "empleadoId": 1234,
    "unidadId": 5,
    "foto": "base64_encoded_photo"
  }'
Learn more in the Attendance Recording Guide.
3

Generate Reports

Export attendance data to Excel for payroll processing.
cURL
curl -X GET "https://api.integra.example/reportes/excel?fecha=2024-03-01&unidadId=5" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  --output attendance-report.xlsx
Explore the Reports API for more options.

Core Features

Everything you need to manage workforce attendance

Time Tracking

Clock in/out, breaks, and overtime tracking with photo verification

Kiosk Mode

Self-service terminals for employees to register attendance

Multi-Location

Manage employees across departments, units, and zones

Access Control

Role-based permissions with JWT authentication

Reports & Analytics

Excel exports for payroll and attendance insights

Audit System

Track observations and maintain compliance records

Explore by Topic

Dive deeper into Integra’s capabilities

Employee Management

Create and manage employee profiles, assignments, and organizational structure

Attendance Recording

Learn how to register shifts, breaks, and handle manual entries

Credentials & Badges

Issue and manage employee credentials and visitor badges

API Reference

Complete REST API documentation with endpoints and examples

Ready to Get Started?

Begin integrating Integra into your workforce management system today

View Quickstart Guide

Build docs developers (and LLMs) love