Skip to main content
GET
/
api
/
v1
/
hr
/
attendance
/
events
cURL
curl -sS -X GET "$FLUIDE_BASE_URL/api/v1/hr/attendance/events?from=2026-06-01&to=2026-06-30" \
  -H "Authorization: Bearer $FLUIDE_ACCESS_TOKEN" \
  -H "X-Fluide-Api-Key: $FLUIDE_API_KEY" \
  -H "X-Fluide-Client-Id: fluide-developer"
{
  "success": true,
  "message": "Operation completed successfully",
  "data": [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "hrEmployeeId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "occurredAt": "2026-06-03T08:15:00.000Z",
      "context": {},
      "employeeDisplayName": "Jane Doe",
      "note": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token JWT. Use as Authorization: Bearer . In the API playground, paste the JWT only.

X-Fluide-Api-Key
string
header
default:fl_dev_your_key
required

Developer API key (fl_dev_...). Required on every API call with a machine access token.

X-Fluide-Client-Id
string
header
default:fluide-developer
required

First-party client audience. Must match the fluide_client_id claim on the JWT. Use fluide-developer for Connect.

Query Parameters

from
string
required

Start calendar date (YYYY-MM-DD)

Example:

"2026-06-01"

to
string
required

End calendar date (YYYY-MM-DD), inclusive

Example:

"2026-06-30"

timeZone
string

IANA time zone (e.g. Africa/Douala). Interprets from/to as local calendar days.

Maximum string length: 64
Example:

"Africa/Douala"

hrEmployeeId
string<uuid>

Filter by HR employee UUID (requires hr:attendance:write for unrestricted scope).

limit
number
default:100
Required range: 1 <= x <= 500

Response

Clock events in the requested date range

success
boolean
Example:

true

message
string
Example:

"Operation completed successfully"

data
object[]