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

# Note

> Add notes and documentation to the flow canvas

The **Note** node is a non-functional node used to annotate the flow canvas. It does not affect call execution — it's purely for documentation and team collaboration.

## Behavior

* Displays a styled sticky note on the flow canvas
* Does not process calls or emit events
* Supports Markdown formatting in the content field
* Can be connected to other nodes purely for visual organization

## Configuration

| Parameter         | Type   | Default     | Description                                 |
| ----------------- | ------ | ----------- | ------------------------------------------- |
| `content`         | string | `""`        | Note content. Supports Markdown formatting. |
| `backgroundColor` | string | `"#fef3c7"` | Background color (hex code)                 |
| `textColor`       | string | `"#92400e"` | Text color (hex code)                       |
| `author`          | string | `""`        | Author name                                 |
| `createdAt`       | string | `""`        | Creation timestamp                          |

## Use cases

<AccordionGroup>
  <Accordion title="Flow documentation">
    Add notes explaining the purpose of each section: "This branch handles VIP callers" or "Retry logic for API failures."
  </Accordion>

  <Accordion title="TODO markers">
    Use notes with a red background to mark sections that need attention: "TODO: Add Spanish language support."
  </Accordion>

  <Accordion title="Change log">
    Track recent changes with dated notes: "2024-01-15: Added holiday routing per ticket #1234."
  </Accordion>
</AccordionGroup>
