# List Billing Claims

> Perform List Billing Claims through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_list_billing_claims](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_list_billing_claims)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_list_billing_claims`

- Connection type: `nikohealth`

## Inputs

- `statuses` — Statuses (multi_select)
  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` — Sales Type (select)
  Optional selected identifier or value.
  Default: `"any"`
  Options: Any ("any"), Purchase ("purchase"), Rental ("rental")
- `sort` — Sort (select)
  Optional selected identifier or value.
  Default: `"CreatedOn ASC"`
  Options: Ascending (oldest first) ("CreatedOn ASC"), Descending (newest first) ("CreatedOn DESC")
- `created_from` — Created From (date)
  Optional date in YYYY-MM-DD format.
- `created_to` — Created To (date)
  Optional date in YYYY-MM-DD format.
- `page_size` — Page Size (number)
  Optional numeric value.
  Default: `100`
- `max_pages` — Max Pages (number)
  Optional numeric value.
  Default: `10`

## Outputs

- `success` — Success
- `items` — Items
- `count` — Count
- `pages_fetched` — Pages Fetched
- `truncated_by_max_pages` — Truncated By Max Pages
- `statuses` — Statuses
- `sales_type` — Sales Type
- `sort` — Sort
- `created_from` — Created From
- `created_to` — Created To
- `error` — Error

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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "sort": {},
    "count": {},
    "error": {},
    "items": {},
    "success": {},
    "statuses": {},
    "created_to": {},
    "sales_type": {},
    "created_from": {},
    "pages_fetched": {},
    "truncated_by_max_pages": {}
  },
  "additionalProperties": true
}
```
