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-approvalsAuthorization
time:read_teamapi key scoperequiredRequired scope when calling with an API key.
Query parameters
statusstringoptionalpending, 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_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks time:read_team scope