Skip to documentation
NikoHealth integration

List Billing Claims

Perform List Billing Claims through NikoHealth.

View as Markdown
nikohealth_list_billing_claims
readnikohealth

Inputs

  • statuses
    multi_select
    Statuses

    Optional 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
    select
    Sales Type

    Optional selected identifier or value.

    Default: "any"

    Options: Any ("any"), Purchase ("purchase"), Rental ("rental")

  • sort
    select
    Sort

    Optional selected identifier or value.

    Default: "CreatedOn ASC"

    Options: Ascending (oldest first) ("CreatedOn ASC"), Descending (newest first) ("CreatedOn DESC")

  • created_from
    date
    Created From

    Optional date in YYYY-MM-DD format.

  • created_to
    date
    Created To

    Optional date in YYYY-MM-DD format.

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 100

  • max_pages
    number
    Max Pages

    Optional numeric value.

    Default: 10

Outputs

  • successSuccess
  • itemsItems
  • countCount
  • pages_fetchedPages Fetched
  • truncated_by_max_pagesTruncated By Max Pages
  • statusesStatuses
  • sales_typeSales Type
  • sortSort
  • created_fromCreated From
  • created_toCreated To
  • errorError

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
}
View all NikoHealth actions