Skip to documentation
ExaPACS integration

List Patient Documents

Perform List Patient Documents through ExaPACS.

View as Markdown
exapacs_list_patient_documents
readexapacs

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • category
    text
    Category

    Optional text value.

  • before_date
    expression
    Before Date

    Optional literal value or workflow expression.

  • show_all
    boolean
    Show All

    Optional true-or-false value.

    Default: false

  • lookback_days
    number
    Lookback Days

    Optional numeric value.

Outputs

  • statusStatus
  • documentsDocuments
  • search_afterSearch After
  • search_beforeSearch Before
  • 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",
  "required": [
    "order_id",
    "patient_id"
  ],
  "properties": {
    "category": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "show_all": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "before_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "lookback_days": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "documents": {},
    "search_after": {},
    "search_before": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions