Search Pending Orders
Perform Search Pending Orders through ClearPathMD.
clearpath_search_pending_ordersreadclearpathmd
Inputs
- Page
pagenumberOptional numeric value.
Default:
1 - Page Size
page_sizenumberOptional numeric value.
Default:
50 - From Date
from_datetextOptional text value.
- To Date
to_datetextOptional text value.
- Entity Id
entity_idexpressionOptional literal value or workflow expression.
- Provider Id
provider_idexpressionOptional literal value or workflow expression.
- Location Id
location_idexpressionOptional literal value or workflow expression.
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",
"properties": {
"page": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"to_date": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"entity_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"from_date": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"page_size": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"location_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"provider_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}