Skip to documentation
NikoHealth integration

Get Patient Insurance

Perform Get Patient Insurance through NikoHealth.

View as Markdown
nikohealth_get_patient_insurance
readnikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • insurance_id
    expression
    Insurance Id

    Optional literal value or workflow expression.

  • payer_id
    expression
    Payer Id

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • insuranceInsurance
  • insurancesInsurances
  • countCount
  • errorError
  • error_typeError Type

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
{
  "type": "object",
  "required": [
    "patient_id"
  ],
  "properties": {
    "payer_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "insurance_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "insurance": {},
    "error_type": {},
    "insurances": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions