# Mark Document Processed

> Perform Mark Document Processed through Medsender.

Source: [https://genhealth.ai/docs/workflows/integrations/medsender/medsender_mark_document_processed](https://genhealth.ai/docs/workflows/integrations/medsender/medsender_mark_document_processed)

Integration: [Medsender](https://genhealth.ai/docs/workflows/integrations/medsender.md)

- Handler: `medsender_mark_document_processed`

- Connection type: `medsender`

## Inputs

- `file_token` — File Token (expression, required)
  Required literal value or workflow expression.
- `archived` — Archived (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `changed` — Changed
- `documents` — Documents
- `error` — Error

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": [
    "file_token"
  ],
  "properties": {
    "archived": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "file_token": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "changed": {},
    "success": {},
    "documents": {}
  },
  "additionalProperties": true
}
```
