List time import runs

Lists safe Timely import summaries for administrators in the resolved workspace. Provider credentials, raw payloads, and provider error bodies are never returned.

GET/api/v1/time-imports

Authorization

time:importapi key scoperequired
Required scope when calling with an API key.

Request

curl -X GET "https://www.digitalstack360.com/api/v1/time-imports" \
  -H "Authorization: Bearer $DS_API_KEY"

Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.

Response

200 OK
{
  "data": [
    {
      "id": "import_01k2...",
      "provider": "timely",
      "date_from": "2026-07-01",
      "date_to": "2026-07-14",
      "state": "completed",
      "imported": 42,
      "skipped": 3
    }
  ],
  "meta": {
    "count": 1,
    "admin_only": true
  }
}

Errors

401
missing_auth

No credentials provided

401
invalid_api_key

API key is invalid or revoked

403
scope_insufficient

Key lacks time:import scope

403
admin_required

Workspace admin or owner role is required