# Push Documents to BDM

> Perform Push Documents to BDM through MyForms.

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

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

- Handler: `myforms_push_documents_to_bdm`

## Inputs

- `workflow_id` — Workflow Id (text, required)
  Required text value.
- `document_ids` — Document Ids (json, required)
  Required JSON value.
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `pushed` — Pushed
- `document_ids` — Document Ids
- `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",
    "document_ids"
  ],
  "properties": {
    "workflow_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "document_ids": {
      "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": {
    "pushed": {},
    "success": {},
    "document_ids": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
