Get Order Items
Perform Get Order Items through NikoHealth.
nikohealth_get_order_itemsreadnikohealth
Inputs
- Order Id
order_idtextrequiredRequired text value.
- Skip If Empty
skip_if_emptybooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessskippedSkippeditemsItemscountCounthcpcs_codesHcpcs Codeshcpcs_itemsHcpcs Itemsorder_item_ids_without_hcpcsOrder Item Ids Without HcpcsreasonReasonerrorError
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": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"skip_if_empty": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"items": {},
"reason": {},
"skipped": {},
"success": {},
"hcpcs_codes": {},
"hcpcs_items": {},
"order_item_ids_without_hcpcs": {}
},
"additionalProperties": true
}