# Add Workflow Note

> Perform Add Workflow Note through MyForms.

Source: [https://genhealth.ai/docs/workflows/integrations/my-forms/myforms_add_workflow_note](https://genhealth.ai/docs/workflows/integrations/my-forms/myforms_add_workflow_note)

Integration: [MyForms](https://genhealth.ai/docs/workflows/integrations/my-forms.md)

- Handler: `myforms_add_workflow_note`

## Inputs

- `workflow_id` — Workflow Id (text, required)
  Required text value.
- `note` — Note (textarea, required)
  Required text value.
- `is_sticky` — Is Sticky (boolean)
  Optional true-or-false value.
  Default: `false`
- `category` — Category (text)
  Optional text value.
  Default: `"Patient Notes"`
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `note_added` — Note Added
- `error_message` — Error Message

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "workflow_id",
    "note"
  ],
  "properties": {
    "note": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "category": {
      "type": "string",
      "default": "Patient Notes",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "is_sticky": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "workflow_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "timeout_seconds": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "success": {},
    "note_added": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
