Skip to main content

Employee Tools

Tools for listing employees and their commuting data (Scope 3 — employee commuting).

list_employees

Parameters:
ParameterTypeRequiredDescription
organization_idstringNoUUID of the organization
situationstringNoFilter: active, inactive
searchstringNoSearch by name or email
pageintegerNoPage number (default: 1)
sizeintegerNoResults per page (default: 50)
Example queries:
"How many active employees do we have?"
"Search for employees named García"
"List inactive employees"
Example response:
{
  "items": [
    {
      "id": "d43aaf5b-...",
      "email": "maria@company.com",
      "situation": "active",
      "status": "loading",
      "periods": []
    }
  ],
  "total": 99,
  "page": 1,
  "size": 50
}