Skip to main content
GET
Public List Employees
This endpoint returns a list of employees. The response is an array of PublicApiEmployeeBaseResponse.

Overview

  • Method: GET
  • Path: /v0/employee/
  • OperationId: public_list_employees_v0_employee__get
  • Authentication: header x-api-key (APIKeyHeader in the OpenAPI)

Query parameters (main)

  • page (default: 0)
  • limit (default: 20)
  • order_by (default: name,status) — supports multiple fields separated by commas
  • order_dir (default: asc,desc) — directions correspond to the fields in order_by
  • is_active (default: true)
  • is_disabled (optional)
  • name, gov_id (CPF), email
  • status[] (list of allowed values from StatusEnumFilter)
  • position_id, sector_id (UUID)
  • branch_id[], organization_id[], id[] (UUID lists)
  • birth_date, admission_date, dismissal_date (format YYYY-MM-DD)
  • client_integration_code (optional)
Tips and common pitfalls
  • Status filter: the API expects the Portuguese enum strings for status[] (e.g., Ativo, Pendente), even when using the EN docs. Do not send English words like ACTIVE.
  • Multiple values: you can repeat a query param to send multiple values (e.g., &status=Ativo&status=Pendente), or use array-friendly notation depending on your HTTP client.
  • Ordering: order_by and order_dir are positional — the first direction applies to the first field, and so on. If only one direction is sent, it applies to all listed fields.
  • UUIDs: fields like id, branch_id, sector_id, organization_id must be valid UUIDs; otherwise the API may return 400 Bad Request.
  • Pagination: combine page and limit to control the result window; defaults are shown above.

Example Request

Authorizations

x-api-key
string
header
required

Query Parameters

is_active
default:true
order_by
string
default:name,status
order_dir
string
default:asc,desc
page
integer
default:0
limit
integer
default:20
name
string | null
gov_id
string | null
email
string | null
status
enum<string>[] | null
Available options:
Ativo,
Inativo,
Afastado,
Férias,
Pendente
position_id
string<uuid> | null
sector_id
string<uuid> | null
branch_id
string<uuid>[] | null
organization_id
string<uuid>[] | null
id
string<uuid>[] | null
birth_date
string<date> | null
admission_date
string<date> | null
dismissal_date
string<date> | null
client_integration_code
string | null
updated_after
string<date-time> | null
is_disabled
boolean | null

Response

Successful Response

data
PublicApiEmployeeBaseResponse · object[]
required
cursor
PaginateCursor · object | null
required