Stampfactory
Dokumentation
Export & Import

Export-Protokolle

Scoped to the requesting user's own export history. The route already requires `time-tracking:export`, but the tenant-wide log additionally leaked who exported which employees over which periods; each exporter only needs to see (and re-download context for) their own runs.

GET
/export/logs
AuthentifizierungBearer <token>

Bearer-Token, erhalten über den Login-Endpunkt (POST /rest/login).

Ort: header

Response-Body

application/json

application/json

curl -X GET "https://example.com/export/logs"
{  "data": [    {      "id": "string",      "user_id": "string",      "format": "string",      "start_date": "string",      "end_date": "string",      "employee_count": 0,      "warnings": [        "string"      ],      "created_at": "string",      "updated_at": "string",      "user": {        "id": "string",        "code": "string"      }    }  ]}