Test your API key with a simple GET request:
curl -X GET "https://peopleflowhr.net/api/v1/employees" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
A successful response returns a JSON array of employees:
{
"data": [...],
"meta": {
"total": 42,
"page": 1,
"per_page": 25
}
}