# Submit Workflow Page Batches

> Perform Submit Workflow Page Batches through MyForms.

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

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

- Handler: `myforms_submit_workflow_page_batches`

## Inputs

- `page_batches` — Page Batches (json, required)
  Required JSON value.
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `results` — Results
- `submitted_count` — Submitted Count
- `failed_count` — Failed Count
- `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": [
    "page_batches"
  ],
  "properties": {
    "page_batches": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "timeout_seconds": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "results": {},
    "success": {},
    "failed_count": {},
    "error_message": {},
    "submitted_count": {}
  },
  "additionalProperties": true
}
```
