Skip to documentation
NikoHealth integration

Update Patient

Perform Update Patient through NikoHealth.

View as Markdown
nikohealth_update_patient
writenikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • first_name
    text
    First Name

    Optional text value.

  • last_name
    text
    Last Name

    Optional text value.

  • date_of_birth
    text
    Date Of Birth

    Optional text value.

  • phone
    text
    Phone

    Optional text value.

  • email
    text
    Email

    Optional text value.

Outputs

  • successSuccess
  • patient_idPatient Id
  • 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"
  ],
  "properties": {
    "email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "phone": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "last_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "first_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "date_of_birth": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "patient_id": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions