Skip to documentation
NikoHealth integration

Submit Claim

Perform Submit Claim through NikoHealth.

View as Markdown
nikohealth_submit_claim
irreversiblenikohealth

Inputs

  • claim_id
    expressionrequired
    Claim Id

    Required literal value or workflow expression.

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • skippedSkipped
  • dry_runDry Run
  • is_electronically_submittedIs Electronically Submitted
  • messageMessage
  • reasonReason
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
irreversible
Confirmation recommended
Yes
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": false,
      "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"
    },
    "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": {},
    "reason": {},
    "dry_run": {},
    "message": {},
    "skipped": {},
    "success": {},
    "is_electronically_submitted": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions