Skip to main content
GET
/
v2
/
time-clock
/
management
/
overview
Return overview of management
curl --request GET \
  --url https://app.tarefy.com/nodeapi/v2/time-clock/management/overview \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://app.tarefy.com/nodeapi/v2/time-clock/management/overview"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://app.tarefy.com/nodeapi/v2/time-clock/management/overview', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.tarefy.com/nodeapi/v2/time-clock/management/overview",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://app.tarefy.com/nodeapi/v2/time-clock/management/overview"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://app.tarefy.com/nodeapi/v2/time-clock/management/overview")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.tarefy.com/nodeapi/v2/time-clock/management/overview")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
[
  {
    "user": {
      "id": 990,
      "name": "Maria Silva",
      "photo": "<string>",
      "email": "maria@tarefy.com"
    },
    "today_status": "working",
    "last_event": "ENTRADA",
    "last_event_time": "2026-06-16T09:00:00.000Z",
    "worked_today_minutes": 240,
    "overtime_month_minutes": 0,
    "bank_balance_minutes": 120,
    "pending_requests": 1,
    "outside_area_punches_count": 2,
    "outside_area_punches": [
      {
        "entry_id": 123,
        "date": "2026-06-10",
        "time": "09:00",
        "punched_at": "2026-06-16T09:00:00.000Z",
        "type": "ENTRADA",
        "type_label": "Entrada",
        "geolocation": {
          "latitude": -23.5617,
          "longitude": -46.6254,
          "accuracy_meters": 12,
          "distance_meters": 180,
          "status": "outside"
        },
        "geofence_reference": {
          "latitude": -23.6190278,
          "longitude": -46.6995833,
          "address": "Sede Tarefy"
        },
        "address": "Rua Teste, 123"
      }
    ],
    "alerts_count": 0
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Visão geral retornada com sucesso

user
object
today_status
string
Example:

"working"

last_event
string | null
Example:

"ENTRADA"

last_event_time
string | null
Example:

"2026-06-16T09:00:00.000Z"

worked_today_minutes
integer
Example:

240

overtime_month_minutes
integer
Example:

0

bank_balance_minutes
integer
Example:

120

pending_requests
integer
Example:

1

outside_area_punches_count
integer

Quantidade de batidas do mês atual registradas fora da área permitida.

Example:

2

outside_area_punches
object[]

Batidas do mês atual cujo status de geofence é outside.

alerts_count
integer
Example:

0