Skip to main content
GET
/
api
/
eod
/
statuses
/
{date}
curl "https://api.hitler.app/api/eod/statuses/2026-03-06?orgId=ORG_UUID" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "status-uuid-1",
    "taskId": "task-uuid-1",
    "userId": "user-uuid-1",
    "date": "2026-03-06",
    "status": "done",
    "taskTitle": "Write newsletter draft for Client A",
    "carryForwardCount": 0,
    "createdAt": "2026-03-06T19:00:05.000Z"
  },
  {
    "id": "status-uuid-2",
    "taskId": "task-uuid-2",
    "userId": "user-uuid-1",
    "date": "2026-03-06",
    "status": "carry_forward",
    "taskTitle": "Design social media assets",
    "carryForwardCount": 2,
    "createdAt": "2026-03-06T19:00:05.000Z"
  },
  {
    "id": "status-uuid-3",
    "taskId": "task-uuid-3",
    "userId": "user-uuid-2",
    "date": "2026-03-06",
    "status": "no_update",
    "taskTitle": "Review blog post",
    "carryForwardCount": 0,
    "createdAt": "2026-03-06T19:00:05.000Z"
  }
]
This endpoint requires API key authentication (service-to-service) or Bearer token (admin/manager).

Path Parameters

date
string
Date in YYYY-MM-DD format. Defaults to today if omitted.

Query Parameters

orgId
string
required
Organization UUID
userId
string
Filter by a specific user UUID (optional)
status
string
Filter by status type: done, carry_forward, dropped, or no_update (optional)

Response

Returns an array of task status entries for the requested date.
id
string
Task status entry UUID
taskId
string
Associated task UUID
userId
string
User UUID who owns the task
date
string
Date (YYYY-MM-DD)
status
string
Parsed status: done, carry_forward, dropped, or no_update
taskTitle
string
Title of the associated task
carryForwardCount
number
Number of times this task has been carried forward
createdAt
string
ISO 8601 timestamp when the status was recorded
curl "https://api.hitler.app/api/eod/statuses/2026-03-06?orgId=ORG_UUID" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": "status-uuid-1",
    "taskId": "task-uuid-1",
    "userId": "user-uuid-1",
    "date": "2026-03-06",
    "status": "done",
    "taskTitle": "Write newsletter draft for Client A",
    "carryForwardCount": 0,
    "createdAt": "2026-03-06T19:00:05.000Z"
  },
  {
    "id": "status-uuid-2",
    "taskId": "task-uuid-2",
    "userId": "user-uuid-1",
    "date": "2026-03-06",
    "status": "carry_forward",
    "taskTitle": "Design social media assets",
    "carryForwardCount": 2,
    "createdAt": "2026-03-06T19:00:05.000Z"
  },
  {
    "id": "status-uuid-3",
    "taskId": "task-uuid-3",
    "userId": "user-uuid-2",
    "date": "2026-03-06",
    "status": "no_update",
    "taskTitle": "Review blog post",
    "carryForwardCount": 0,
    "createdAt": "2026-03-06T19:00:05.000Z"
  }
]