Skip to documentation
Medsender integration

List Documents

Perform List Documents through Medsender.

View as Markdown
medsender_list_documents
readmedsender

Inputs

  • fetch_all_pages
    boolean
    Fetch All Pages

    Optional true-or-false value.

    Default: true

  • page
    number
    Page

    Optional numeric value.

    Default: 1

  • max_pages
    number
    Max Pages

    Optional numeric value.

    Default: 20

  • page_size
    number
    Page Size

    Optional numeric value.

  • sort_dir
    select
    Sort Dir

    Optional selected identifier or value.

    Default: "desc"

    Options: Newest First ("desc"), Oldest First ("asc")

Outputs

  • successSuccess
  • documentsDocuments
  • countCount
  • pagePage
  • per_pagePer Page
  • has_moreHas More
  • pages_fetchedPages Fetched
  • scannedScanned
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "page": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "sort_dir": {
      "enum": [
        "desc",
        "asc"
      ],
      "type": "string",
      "default": "desc",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "max_pages": {
      "type": "number",
      "default": 20,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "page_size": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "fetch_all_pages": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "page": {},
    "count": {},
    "error": {},
    "scanned": {},
    "success": {},
    "has_more": {},
    "per_page": {},
    "documents": {},
    "pages_fetched": {}
  },
  "additionalProperties": true
}
View all Medsender actions