Update Signature Status
Perform Update Signature Status through NikoHealth.
nikohealth_update_signature_statuswritenikohealth
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Signature Status
signature_statusselectOptional selected identifier or value.
Default:
"Reviewed"Options: Reviewed ("Reviewed"), Signed ("Signed")
Outputs
successSuccessskippedSkippederrorError
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
}