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

# Schedule Delivery

> Set a future date for broadcast.

<ParamField path="id" type="string" required>
  The ID of the id.
</ParamField>

### Request Body

<ParamField body="scheduled_date" type="string" required>
  ISO8601 timestamp
</ParamField>

<ParamField body="timezone" type="string">
  IANA timezone (e.g. UTC, Asia/Kolkata)
</ParamField>

<RequestExample>
  ```json Request theme={null}
  {
    "scheduled_date": "2024-12-25T08:00:00Z"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "scheduled_at": "2024-12-25T08:00:00Z"
    }
  }
  ```
</ResponseExample>
