Skip to documentation
NikoHealth integration

Update Signature Status

Perform Update Signature Status through NikoHealth.

View as Markdown
nikohealth_update_signature_status
writenikohealth

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • signature_status
    select
    Signature Status

    Optional selected identifier or value.

    Default: "Reviewed"

    Options: Reviewed ("Reviewed"), Signed ("Signed")

Outputs

  • successSuccess
  • skippedSkipped
  • 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": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "signature_status": {
      "enum": [
        "Reviewed",
        "Signed"
      ],
      "type": "string",
      "default": "Reviewed",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "error": {},
    "skipped": {},
    "success": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions