Get Order Authorizations
Perform Get Order Authorizations through ExaPACS.
exapacs_get_order_authorizationsreadexapacs
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Cpt Code
cpt_codeexpressionOptional literal value or workflow expression.
Outputs
statusStatusauthorizationsAuthorizationsmatch_countMatch Countauthorization_noAuthorization Noauthorization_numbersAuthorization Numberscpt_codes_on_orderCpt Codes On OrdererrorError
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
}