List Employees (V2)
List Employees (V2)
Enhanced employee listing with advanced filters and filter_hash for safe bulk operations
GET
List Employees (V2)
List Employees (V2)
Retrieve a paginated list of employees with advanced filtering. This V2 endpoint extends the V1 list with additional filters (co2e_status, file_id, created_at range) and returns a filter_hash required by the bulk delete by filters endpoint.
Request
Headers
string
required
Your API key for authenticationExample:
sk_live_1234567890abcdefstring
required
Your organization UUIDExample:
a8315ef3-dd50-43f8-b7ce-d839e68d51faQuery Parameters
string
Search employees by name or email (partial match)Example:
"john"array[string]
Filter by transport type used in commuting periodsAvailable values:
car, bus, train, metro, tram, motorbike, bicycle, walking, telecommuting, electric_kick_scooter, trolleybusExample: transport_type[]=car&transport_type[]=busarray[string]
Filter by employment situationAvailable values:
active, inactive, terminatedExample: situation[]=activearray[string]
Filter by data statusAvailable values:
uploaded, loadingExample: status[]=uploadedarray[string]
Filter by how commuting data was collectedAvailable values:
manual, qr, form, file_uploadExample: response_medium[]=formarray[string]
Filter by source file UUID(s)Example:
file_id[]=550e8400-e29b-41d4-a716-446655440000string
Filter by emission calculation statusAvailable values:
calculated, not_calculatedExample: not_calculateddatetime
Filter employees created on or after this date (ISO 8601)Example:
2024-01-01T00:00:00Zdatetime
Filter employees created on or before this date (ISO 8601)Example:
2024-12-31T23:59:59Zinteger
default:"1"
Page number for paginationExample:
1integer
default:"10"
Number of items per page (max 100)Example:
50Response
Returns a paginated list of employees (HTTP 200) with afilter_hash for safe bulk operations.
integer
Total number of employees matching the filters
integer
Current page number
integer
Number of items per page
string
Hash of the applied filters. Pass this to bulk delete by filters to ensure the delete operates on exactly the same result set.
Example
Successful Response
Common Errors
401 Unauthorized
Cause: Missing or invalid API key403 Forbidden
Cause: The authenticated user is not a member of the organizationRelated Endpoints
List Employees (V1)
Basic employee listing
Bulk Delete by Filters
Delete employees matching filters (requires filter_hash from this endpoint)