> ## Documentation Index
> Fetch the complete documentation index at: https://developers.tarefy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Return overview of management



## OpenAPI

````yaml /api-reference/tempo.yaml get /v2/time-clock/management/overview
openapi: 3.0.0
info:
  title: Tarefy API
  description: >-
    Tarefy REST API — task management, culture and performance platform.


    Endpoints are versioned at `/v2/...`. Authentication via Bearer JWT in the
    `Authorization` header.


    To get started, see the [authentication guide](/authentication) and the
    [quickstart](/quickstart).
  version: 2.0.0
  contact:
    name: Tarefy Support
    email: suporte@tarefy.com
    url: https://tarefy.com
  license:
    name: Proprietary
    url: https://tarefy.com
servers:
  - url: https://app.tarefy.com/nodeapi
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Time Clock
    description: Electronic time — work record
  - name: Time Clock Justifys
    description: Time justifications
  - name: Time Bank
    description: Time bank
  - name: Off Time
    description: Days off and absences
  - name: Vacations
    description: Vacation — granting and management
paths:
  /v2/time-clock/management/overview:
    get:
      tags:
        - Time Clock
      summary: Return overview of management
      responses:
        '200':
          description: Visão geral retornada com sucesso
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    user:
                      type: object
                      properties:
                        id:
                          type: integer
                          example: 990
                        name:
                          type: string
                          example: Maria Silva
                        photo:
                          type: string
                          nullable: true
                        email:
                          type: string
                          example: maria@tarefy.com
                    today_status:
                      type: string
                      example: working
                    last_event:
                      type: string
                      nullable: true
                      example: ENTRADA
                    last_event_time:
                      type: string
                      nullable: true
                      example: '2026-06-16T09:00:00.000Z'
                    worked_today_minutes:
                      type: integer
                      example: 240
                    overtime_month_minutes:
                      type: integer
                      example: 0
                    bank_balance_minutes:
                      type: integer
                      example: 120
                    pending_requests:
                      type: integer
                      example: 1
                    outside_area_punches_count:
                      type: integer
                      description: >-
                        Quantidade de batidas do mês atual registradas fora da
                        área permitida.
                      example: 2
                    outside_area_punches:
                      type: array
                      description: Batidas do mês atual cujo status de geofence é outside.
                      items:
                        type: object
                        properties:
                          entry_id:
                            type: integer
                            example: 123
                          date:
                            type: string
                            example: '2026-06-10'
                          time:
                            type: string
                            example: '09:00'
                          punched_at:
                            type: string
                            example: '2026-06-16T09:00:00.000Z'
                          type:
                            type: string
                            example: ENTRADA
                          type_label:
                            type: string
                            example: Entrada
                          geolocation:
                            type: object
                            properties:
                              latitude:
                                type: number
                                example: -23.5617
                              longitude:
                                type: number
                                example: -46.6254
                              accuracy_meters:
                                type: integer
                                nullable: true
                                example: 12
                              distance_meters:
                                type: integer
                                nullable: true
                                example: 180
                              status:
                                type: string
                                nullable: true
                                example: outside
                          geofence_reference:
                            type: object
                            nullable: true
                            description: >-
                              Localização da sede configurada em
                              /time-clock/settings/general para cálculo de rota.
                            properties:
                              latitude:
                                type: number
                                example: -23.6190278
                              longitude:
                                type: number
                                example: -46.6995833
                              address:
                                type: string
                                nullable: true
                                example: Sede Tarefy
                          address:
                            type: string
                            nullable: true
                            example: Rua Teste, 123
                    alerts_count:
                      type: integer
                      example: 0
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````