Skip to documentation
ExaPACS integration

Get Approved Report

Perform Get Approved Report through ExaPACS.

View as Markdown
exapacs_get_approved_report
readexapacs

Inputs

  • study_id
    expressionrequired
    Study Id

    Required literal value or workflow expression.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • order_id
    expression
    Order Id

    Optional literal value or workflow expression.

Outputs

  • statusStatus
  • document_idDocument Id
  • s3_keyS3 Key
  • filenameFilename
  • mime_typeMime Type
  • byte_countByte Count
  • skippedSkipped
  • 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": [
    "study_id"
  ],
  "properties": {
    "order_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "study_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "s3_key": {},
    "status": {},
    "skipped": {},
    "filename": {},
    "mime_type": {},
    "byte_count": {},
    "document_id": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions