List my eligible time approvals

Lists only approval records in the resolved workspace for which the authenticated principal is an eligible reviewer. Notes, rates, and raw evidence are excluded.

GET/api/v1/time-approvals

Authorization

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

Query parameters

statusstringoptional
pending, approved, rejected, or all

Example: pending

Request

curl -X GET "https://www.digitalstack360.com/api/v1/time-approvals" \
  -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": "approval_01k2...",
      "submission_id": "submission_01k2...",
      "work_date": "2026-07-14",
      "state": "pending",
      "minutes": 480,
      "actionable": true
    }
  ],
  "meta": {
    "eligible_only": true,
    "count": 1
  }
}

Errors

401
missing_auth

No credentials provided

401
invalid_api_key

API key is invalid or revoked

403
scope_insufficient

Key lacks time:read_team scope