Skip to documentation
NikoHealth integration

Push Insurance to Patient

Perform Push Insurance to Patient through NikoHealth.

View as Markdown
nikohealth_sync_insurance
writenikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • statusStatus
  • synced_countSynced Count
  • skipped_countSkipped Count
  • policies_foundPolicies Found
  • already_present_countAlready Present Count
  • unmapped_countUnmapped Count
  • failed_countFailed Count
  • failure_reasonsFailure Reasons
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "patient_id",
    "document_id"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "failed_count": {},
    "synced_count": {},
    "skipped_count": {},
    "policies_found": {},
    "unmapped_count": {},
    "failure_reasons": {},
    "already_present_count": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions