# System Time

## Overview

**SystemTime** is used for returning different individual parts of the current system time at the moment that the **Node** is evaluated. Values are returned as **Integers**, and therefore, have no inherent zero-padding, textual notation or suffixes.

## Attributes

| Attribute  | Type     | Description                                                             |
| ---------- | -------- | ----------------------------------------------------------------------- |
| `24h Mode` | **Bool** | Changes whether the `Hour` **Output** is given in 12 or 24 hour format. |

## Inputs

| Input             | Type      | Description                                                           |
| ----------------- | --------- | --------------------------------------------------------------------- |
| *Pulse Input* (►) | **Pulse** | A standard **Input Pulse**, to trigger the execution of the **Node**. |

## Outputs

| Output             | Type      | Description                                                                                                                            |
| ------------------ | --------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| *Pulse Output* (►) | **Pulse** | A standard **Output Pulse**, to move onto the next **Node** along the **Logic Branch**, once this **Node** has finished its execution. |
| `Hour`             | **Int**   | The system's current hour, in 12 or 24 hour format (based on `24h Mode` **Attribute**).                                                |
| `Minute`           | **Int**   | The system's current minute.                                                                                                           |
| `Second`           | **Int**   | The system's current seconds.                                                                                                          |
| `Millisecond`      | **Int**   | The system's current milliseconds.                                                                                                     |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.incari.com/incari-studio/master/toolbox/date-time/systemtime.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
