Skip to documentation
NikoHealth integration

Create Patient Insurance

Perform Create Patient Insurance through NikoHealth.

View as Markdown
nikohealth_create_insurance
writenikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • insurance_data
    jsonrequired
    Insurance Data

    Required JSON value.

Outputs

  • successSuccess
  • insuranceInsurance
  • 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",
    "insurance_data"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "insurance_data": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "insurance": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions