# Submit Workflow Pages

> Perform Submit Workflow Pages through MyForms.

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

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

- Handler: `myforms_submit_workflow_pages`

## Inputs

- `workflow_id` — Workflow Id (text, required)
  Required text value.
- `client_id` — Client Id (text, required)
  Required text value.
- `attachment_id` — Attachment Id (number, required)
  Required numeric value.
- `document_name` — Document Name (text, required)
  Required text value.
- `page_numbers` — Page Numbers (json, required)
  Required JSON value.
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `document_id` — Document Id
- `page_numbers` — Page Numbers
- `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",
    "client_id",
    "attachment_id",
    "document_name",
    "page_numbers"
  ],
  "properties": {
    "client_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "page_numbers": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "attachment_id": {
      "type": "number",
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "document_name": {
      "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": {},
    "document_id": {},
    "page_numbers": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
