List Billing Claims
Perform List Billing Claims through NikoHealth.
nikohealth_list_billing_claimsInputs
- Statuses
statusesmulti_selectOptional list of selected values.
Default:
["New"]Options: New ("New"), Submitted ("Submitted"), Denied ("Denied"), Hold ("Hold"), Open ("Open"), Rejected ("Rejected"), Closed ("Closed"), Void ("Void")
- Sales Type
sales_typeselectOptional selected identifier or value.
Default:
"any"Options: Any ("any"), Purchase ("purchase"), Rental ("rental")
- Sort
sortselectOptional selected identifier or value.
Default:
"CreatedOn ASC"Options: Ascending (oldest first) ("CreatedOn ASC"), Descending (newest first) ("CreatedOn DESC")
- Created From
created_fromdateOptional date in YYYY-MM-DD format.
- Created To
created_todateOptional date in YYYY-MM-DD format.
- Page Size
page_sizenumberOptional numeric value.
Default:
100 - Max Pages
max_pagesnumberOptional numeric value.
Default:
10
Outputs
successSuccessitemsItemscountCountpages_fetchedPages Fetchedtruncated_by_max_pagesTruncated By Max PagesstatusesStatusessales_typeSales TypesortSortcreated_fromCreated Fromcreated_toCreated ToerrorError
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": {
"sort": {
"enum": [
"CreatedOn ASC",
"CreatedOn DESC"
],
"type": "string",
"default": "CreatedOn ASC",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"statuses": {
"type": "array",
"items": {
"enum": [
"New",
"Submitted",
"Denied",
"Hold",
"Open",
"Rejected",
"Closed",
"Void"
],
"type": "string"
},
"default": [
"New"
],
"description": "Optional list of selected values.",
"x-workflow-field-type": "multi_select"
},
"max_pages": {
"type": "number",
"default": 10,
"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": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"sales_type": {
"enum": [
"any",
"purchase",
"rental"
],
"type": "string",
"default": "any",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"created_from": {
"type": "string",
"format": "date",
"description": "Optional date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"sort": {},
"count": {},
"error": {},
"items": {},
"success": {},
"statuses": {},
"created_to": {},
"sales_type": {},
"created_from": {},
"pages_fetched": {},
"truncated_by_max_pages": {}
},
"additionalProperties": true
}