Claim Tagged Orders
Perform Claim Tagged Orders through NikoHealth.
nikohealth_claim_tagged_orderswritenikohealth
Inputs
- Trigger Tag Name
trigger_tag_nametextrequiredRequired text value.
- Processing Tag Name
processing_tag_nametextrequiredRequired text value.
- Exclude Tag Names
exclude_tag_namesexpressionOptional literal value or workflow expression.
- Exclude Statuses
exclude_statusesexpressionOptional literal value or workflow expression.
Default:
["Cancelled"] - Include Statuses
include_statusesexpressionOptional literal value or workflow expression.
- Lookback Hours
lookback_hoursnumberOptional numeric value.
Default:
720 - Created From
created_fromexpressionOptional literal value or workflow expression.
- Created To
created_toexpressionOptional literal value or workflow expression.
- Timezone
timezonetextOptional text value.
Default:
"America/Chicago" - Page Size
page_sizenumberOptional numeric value.
Default:
100 - Max Pages
max_pagesnumberOptional numeric value.
- Record Limit
record_limitnumberOptional numeric value.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
true
Outputs
successSuccesserrorErroritemsItemscountCountclaimed_countClaimed Countclaim_attemptedClaim Attemptedclaim_failed_countClaim Failed Countclaim_failed_order_idsClaim Failed Order Idsskipped_stale_countSkipped Stale Countverify_failed_countVerify Failed CountdiagnosticsDiagnostics
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- Yes
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"trigger_tag_name",
"processing_tag_name"
],
"properties": {
"dry_run": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"timezone": {
"type": "string",
"default": "America/Chicago",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"max_pages": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"page_size": {
"type": "number",
"default": 100,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"created_to": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"created_from": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"record_limit": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"lookback_hours": {
"type": "number",
"default": 720,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"exclude_statuses": {
"default": [
"Cancelled"
],
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"include_statuses": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"trigger_tag_name": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"exclude_tag_names": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"processing_tag_name": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"items": {},
"success": {},
"diagnostics": {},
"claimed_count": {},
"claim_attempted": {},
"claim_failed_count": {},
"skipped_stale_count": {},
"verify_failed_count": {},
"claim_failed_order_ids": {}
},
"additionalProperties": true
}