> ## 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.

# Deploy Schedule

> Get the deploy schedule for all active clients this week

<Note>This endpoint requires authentication.</Note>

## Response

Array of active clients with deploy days, sorted by day of week.

<ResponseField name="data" type="array">
  <Expandable title="Schedule item">
    <ResponseField name="id" type="string">
      Client UUID
    </ResponseField>

    <ResponseField name="name" type="string">
      Client name
    </ResponseField>

    <ResponseField name="deployDay" type="string">
      Day of week
    </ResponseField>

    <ResponseField name="contentCadence" type="integer">
      Posts per week
    </ResponseField>

    <ResponseField name="assignedWriters" type="array">
      Writer user IDs
    </ResponseField>

    <ResponseField name="assignedDesigners" type="array">
      Designer user IDs
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.hitler.app/api/clients/schedule" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```typescript TypeScript theme={null}
  const schedule = await api.getDeploySchedule();
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "client-uuid-1",
      "name": "Acme Corp",
      "deployDay": "Monday",
      "contentCadence": 2,
      "assignedWriters": ["user-uuid-1"],
      "assignedDesigners": ["user-uuid-2"]
    },
    {
      "id": "client-uuid-2",
      "name": "Globex",
      "deployDay": "Thursday",
      "contentCadence": 1,
      "assignedWriters": ["user-uuid-3"],
      "assignedDesigners": null
    }
  ]
  ```
</ResponseExample>
