# Update Workflow Tasks with Verification

> Perform Update Workflow Tasks with Verification through MyForms.

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

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

- Handler: `myforms_update_workflow_tasks_with_verification`

## Inputs

- `workflow_id` — Workflow Id (text, required)
  Required text value.
- `task_names` — Task Names (json, required)
  Required JSON value.
- `status` — Status (text)
  Optional text value.
  Default: `"Completed"`
- `defer_until_active` — Defer Until Active (boolean)
  Optional true-or-false value.
  Default: `false`
- `require_all_requested_names` — Require All Requested Names (boolean)
  Optional true-or-false value.
  Default: `false`
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `updated_names` — Updated Names
- `missing_names` — Missing Names
- `state_advance_failed` — State Advance Failed
- `deferred` — Deferred
- `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",
    "task_names"
  ],
  "properties": {
    "status": {
      "type": "string",
      "default": "Completed",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "task_names": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "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"
    },
    "defer_until_active": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "require_all_requested_names": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "success": {},
    "deferred": {},
    "error_message": {},
    "missing_names": {},
    "updated_names": {},
    "state_advance_failed": {}
  },
  "additionalProperties": true
}
```
