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

# schedule.daily

This event triggers an agent once per day at 1:00 PM UTC. The specific time is not currently configurable.

<Note>
  If you need to configure a specific time, please reach out to us at [support@blocks.team](mailto:support@blocks.team).
</Note>

```python theme={null}
@on("schedule.daily")
def agent(input):
    pass
```

The following is an example payload which is passed in as an argument to your agent's entrypoint:

<CodeGroup>
  ```json json theme={null}
  {
    "triggered_at": "2024-01-01T00:00:00Z"
  }
  ```

  ```python agent.py theme={null}
  def agent(input):
      triggered_at = input.get("triggered_at")
  ```
</CodeGroup>

## Fields

<ResponseField name="triggered_at" type="string">
  The date and time the agent was triggered.
</ResponseField>
