Skip to documentation
Medsender integration

Mark Document Processed

Perform Mark Document Processed through Medsender.

View as Markdown
medsender_mark_document_processed
writemedsender

Inputs

  • file_token
    expressionrequired
    File Token

    Required literal value or workflow expression.

  • archived
    boolean
    Archived

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • changedChanged
  • documentsDocuments
  • errorError

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
{
  "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
{
  "type": "object",
  "properties": {
    "error": {},
    "changed": {},
    "success": {},
    "documents": {}
  },
  "additionalProperties": true
}
View all Medsender actions