Skip to documentation
ExaPACS integration

Get Order Authorizations

Perform Get Order Authorizations through ExaPACS.

View as Markdown
exapacs_get_order_authorizations
readexapacs

Inputs

  • order_id
    expressionrequired
    Order Id

    Required literal value or workflow expression.

  • cpt_code
    expression
    Cpt Code

    Optional literal value or workflow expression.

Outputs

  • statusStatus
  • authorizationsAuthorizations
  • match_countMatch Count
  • authorization_noAuthorization No
  • authorization_numbersAuthorization Numbers
  • cpt_codes_on_orderCpt Codes On Order
  • 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"
  ],
  "properties": {
    "cpt_code": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "match_count": {},
    "authorizations": {},
    "authorization_no": {},
    "cpt_codes_on_order": {},
    "authorization_numbers": {}
  },
  "additionalProperties": true
}
View all ExaPACS actions