Skip to documentation
ExaPACS integration

Get ExaPACS Worklist Item

Perform Get ExaPACS Worklist Item through ExaPACS.

View as Markdown
get_exapacs_worklist_item
writeexapacs

Inputs

  • patient_first_name
    expressionrequired
    Patient First Name

    Required literal value or workflow expression.

  • patient_last_name
    expressionrequired
    Patient Last Name

    Required literal value or workflow expression.

  • patient_birth_date
    expressionrequired
    Patient Birth Date

    Required literal value or workflow expression.

  • dos
    text
    Dos

    Optional text value.

  • accession_number
    expression
    Accession Number

    Optional literal value or workflow expression.

Outputs

  • statusStatus
  • itemItem
  • 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": [
    "patient_first_name",
    "patient_last_name",
    "patient_birth_date"
  ],
  "properties": {
    "dos": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "accession_number": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_last_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_birth_date": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_first_name": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "item": {},
    "error": {},
    "status": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions