Skip to documentation
ExaPACS integration

Get Completed Schedule Details Report

Perform Get Completed Schedule Details Report through ExaPACS.

View as Markdown
exapacs_export_completed_schedule_details_report
writeexapacs

Inputs

  • from_date
    daterequired
    From Date

    Required date in YYYY-MM-DD format.

  • to_date
    daterequired
    To Date

    Required date in YYYY-MM-DD format.

  • facilities
    text
    Facilities

    Optional text value.

  • search_date_by
    text
    Search Date By

    Optional text value.

    Default: "studyDt"

  • include_deleted_studies
    boolean
    Include Deleted Studies

    Optional true-or-false value.

    Default: false

  • only_dcm
    boolean
    Only Dcm

    Optional true-or-false value.

    Default: false

  • ref_phy_names
    text
    Ref Phy Names

    Optional text value.

  • read_phy_names
    text
    Read Phy Names

    Optional text value.

  • poll_attempts
    number
    Poll Attempts

    Optional numeric value.

    Default: 5

  • poll_interval_seconds
    number
    Poll Interval Seconds

    Optional numeric value.

    Default: 2

  • output_path
    text
    Output Path

    Optional text value.

Outputs

  • statusStatus
  • document_idDocument Id
  • filenameFilename
  • mime_typeMime Type
  • report_typeReport Type
  • filtersFilters
  • output_pathOutput Path
  • size_bytesSize Bytes
  • 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": [
    "from_date",
    "to_date"
  ],
  "properties": {
    "to_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "only_dcm": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "from_date": {
      "type": "string",
      "format": "date",
      "description": "Required date in YYYY-MM-DD format.",
      "x-workflow-field-type": "date"
    },
    "facilities": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "poll_attempts": {
      "type": "number",
      "default": 5,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "ref_phy_names": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "read_phy_names": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "search_date_by": {
      "type": "string",
      "default": "studyDt",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "poll_interval_seconds": {
      "type": "number",
      "default": 2,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "include_deleted_studies": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "filters": {},
    "filename": {},
    "mime_type": {},
    "size_bytes": {},
    "document_id": {},
    "output_path": {},
    "report_type": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions