> ## Documentation Index
> Fetch the complete documentation index at: https://mako-docs.devinagiffy.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Get EOD Summary

> Get the end-of-day summary for a given date, including per-user task status counts and team completion rates

<Note>This endpoint requires API key authentication (service-to-service) or Bearer token (admin/manager).</Note>

## Path Parameters

<ParamField path="date" type="string">
  Date in `YYYY-MM-DD` format. Defaults to today if omitted.
</ParamField>

## Query Parameters

<ParamField query="orgId" type="string" required>
  Organization UUID
</ParamField>

## Response

Returns the EOD summary for the requested date, including team-wide stats and per-user breakdowns.

<ResponseField name="date" type="string">
  Date (YYYY-MM-DD)
</ResponseField>

<ResponseField name="organizationId" type="string">
  Organization UUID
</ResponseField>

<ResponseField name="totalTasks" type="number">
  Total tasks tracked for the day
</ResponseField>

<ResponseField name="done" type="number">
  Tasks marked as done
</ResponseField>

<ResponseField name="carryForward" type="number">
  Tasks carried forward to the next day
</ResponseField>

<ResponseField name="dropped" type="number">
  Tasks dropped
</ResponseField>

<ResponseField name="noUpdate" type="number">
  Tasks with no status update from the user
</ResponseField>

<ResponseField name="completionRate" type="number">
  Percentage of tasks completed (0-100)
</ResponseField>

<ResponseField name="users" type="array">
  Per-user breakdown of task statuses
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.hitler.app/api/eod/summary/2026-03-06?orgId=ORG_UUID" \
    -H "X-API-Key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "date": "2026-03-06",
    "organizationId": "org-uuid",
    "totalTasks": 24,
    "done": 15,
    "carryForward": 6,
    "dropped": 1,
    "noUpdate": 2,
    "completionRate": 62.5,
    "users": [
      {
        "userId": "user-uuid-1",
        "name": "Alice",
        "done": 3,
        "carryForward": 1,
        "dropped": 0,
        "noUpdate": 0
      },
      {
        "userId": "user-uuid-2",
        "name": "Bob",
        "done": 0,
        "carryForward": 0,
        "dropped": 0,
        "noUpdate": 2
      }
    ]
  }
  ```
</ResponseExample>
