Exportar resumen de horas de trabajo
curl --request POST \
--url https://api.ugps.io/api/reports/working-hours/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trackerIds": [
1234,
5678
],
"format": "pdf",
"weekDays": [
"monday",
"tuesday",
"wednesday",
"thursday",
"friday"
],
"startTime": "08:00",
"endTime": "17:00"
}
'import requests
url = "https://api.ugps.io/api/reports/working-hours/export"
payload = {
"trackerIds": [1234, 5678],
"format": "pdf",
"weekDays": ["monday", "tuesday", "wednesday", "thursday", "friday"],
"startTime": "08:00",
"endTime": "17:00"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
trackerIds: [1234, 5678],
format: 'pdf',
weekDays: ['monday', 'tuesday', 'wednesday', 'thursday', 'friday'],
startTime: '08:00',
endTime: '17:00'
})
};
fetch('https://api.ugps.io/api/reports/working-hours/export', 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://api.ugps.io/api/reports/working-hours/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'trackerIds' => [
1234,
5678
],
'format' => 'pdf',
'weekDays' => [
'monday',
'tuesday',
'wednesday',
'thursday',
'friday'
],
'startTime' => '08:00',
'endTime' => '17:00'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.ugps.io/api/reports/working-hours/export"
payload := strings.NewReader("{\n \"trackerIds\": [\n 1234,\n 5678\n ],\n \"format\": \"pdf\",\n \"weekDays\": [\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\"\n ],\n \"startTime\": \"08:00\",\n \"endTime\": \"17:00\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.ugps.io/api/reports/working-hours/export")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"trackerIds\": [\n 1234,\n 5678\n ],\n \"format\": \"pdf\",\n \"weekDays\": [\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\"\n ],\n \"startTime\": \"08:00\",\n \"endTime\": \"17:00\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ugps.io/api/reports/working-hours/export")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"trackerIds\": [\n 1234,\n 5678\n ],\n \"format\": \"pdf\",\n \"weekDays\": [\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\"\n ],\n \"startTime\": \"08:00\",\n \"endTime\": \"17:00\"\n}"
response = http.request(request)
puts response.read_body"<string>"{
"error": "El email es requerido"
}{
"error": "Token inválido o expirado"
}{
"error": "No tiene permisos para realizar esta acción"
}{
"message": "Error interno del servidor"
}Reportes - Horas de Trabajo
Exportar resumen de horas de trabajo
Genera un archivo Excel o PDF con el resumen de horas de trabajo (estadísticas por asset) para los trackers indicados.
Formatos de fecha aceptados:
DD/MM/YYYY- Solo fechaDD/MM/YYYY HH:mm- Fecha con hora y minutosDD/MM/YYYY HH:mm:ss- Fecha con hora, minutos y segundos
POST
/
api
/
reports
/
working-hours
/
export
Exportar resumen de horas de trabajo
curl --request POST \
--url https://api.ugps.io/api/reports/working-hours/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"trackerIds": [
1234,
5678
],
"format": "pdf",
"weekDays": [
"monday",
"tuesday",
"wednesday",
"thursday",
"friday"
],
"startTime": "08:00",
"endTime": "17:00"
}
'import requests
url = "https://api.ugps.io/api/reports/working-hours/export"
payload = {
"trackerIds": [1234, 5678],
"format": "pdf",
"weekDays": ["monday", "tuesday", "wednesday", "thursday", "friday"],
"startTime": "08:00",
"endTime": "17:00"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
trackerIds: [1234, 5678],
format: 'pdf',
weekDays: ['monday', 'tuesday', 'wednesday', 'thursday', 'friday'],
startTime: '08:00',
endTime: '17:00'
})
};
fetch('https://api.ugps.io/api/reports/working-hours/export', 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://api.ugps.io/api/reports/working-hours/export",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'trackerIds' => [
1234,
5678
],
'format' => 'pdf',
'weekDays' => [
'monday',
'tuesday',
'wednesday',
'thursday',
'friday'
],
'startTime' => '08:00',
'endTime' => '17:00'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.ugps.io/api/reports/working-hours/export"
payload := strings.NewReader("{\n \"trackerIds\": [\n 1234,\n 5678\n ],\n \"format\": \"pdf\",\n \"weekDays\": [\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\"\n ],\n \"startTime\": \"08:00\",\n \"endTime\": \"17:00\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.ugps.io/api/reports/working-hours/export")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"trackerIds\": [\n 1234,\n 5678\n ],\n \"format\": \"pdf\",\n \"weekDays\": [\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\"\n ],\n \"startTime\": \"08:00\",\n \"endTime\": \"17:00\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ugps.io/api/reports/working-hours/export")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"trackerIds\": [\n 1234,\n 5678\n ],\n \"format\": \"pdf\",\n \"weekDays\": [\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\"\n ],\n \"startTime\": \"08:00\",\n \"endTime\": \"17:00\"\n}"
response = http.request(request)
puts response.read_body"<string>"{
"error": "El email es requerido"
}{
"error": "Token inválido o expirado"
}{
"error": "No tiene permisos para realizar esta acción"
}{
"message": "Error interno del servidor"
}Authorizations
Token de sesión Better Auth o API token (atk_...) en el header Authorization: Bearer <token>. Los JWT legacy ya no son válidos.
Query Parameters
Fecha de inicio (ejemplo: 01/01/2025 o 01/01/2025 08:30)
Fecha de fin (ejemplo: 31/01/2025 o 31/01/2025 17:45)
Body
application/json
IDs de los trackers (flespiId) a exportar
Example:
[1234, 5678]
Formato de archivo a generar (pdf o xlsx).
Available options:
pdf, xlsx Example:
"pdf"
Días de la semana a incluir (default: lunes a viernes)
Available options:
monday, tuesday, wednesday, thursday, friday, saturday, sunday Hora de inicio del horario laboral (default: 08:00)
Hora de fin del horario laboral (default: 17:00)
Response
Archivo generado exitosamente
The response is of type file.
⌘I