Get Order Documents
Perform Get Order Documents through ClearPathMD.
clearpath_get_order_documentsreadclearpathmd
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Page Size
page_sizenumberOptional numeric value.
Default:
50
Outputs
successSuccesserrorError
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": {
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"page_size": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}