Skip to documentation
NikoHealth integration

Update Claim Line Quantities

Perform Update Claim Line Quantities through NikoHealth.

View as Markdown
nikohealth_update_claim_line_quantities
writenikohealth

Inputs

  • claim_id
    expressionrequired
    Claim Id

    Required literal value or workflow expression.

  • line_updates
    json
    Line Updates

    Optional JSON value.

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: true

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • dry_runDry Run
  • claim_idClaim Id
  • correctionsCorrections
  • changed_countChanged Count
  • refused_countRefused Count
  • refusalsRefusals
  • verifiedVerified
  • messageMessage
  • errorError
  • error_typeError Type

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": [
    "claim_id"
  ],
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "claim_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "line_updates": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "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": {
    "error": {},
    "dry_run": {},
    "message": {},
    "skipped": {},
    "success": {},
    "claim_id": {},
    "refusals": {},
    "verified": {},
    "error_type": {},
    "corrections": {},
    "changed_count": {},
    "refused_count": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions